From 8a6ab3aa61d441b9210c05c84dc9998acfc38737 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Mon, 16 Oct 2006 13:50:26 +0000 Subject: Build system reorg, see README and Makefile comments for details. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@464494 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/common/framing/generated/Makefile | 41 --- .../framing/generated/stylesheets/amqp_client.xsl | 155 -------- .../stylesheets/amqp_client_handler_impl.xsl | 187 ---------- .../stylesheets/amqp_client_operations.xsl | 105 ------ .../framing/generated/stylesheets/amqp_consts.xsl | 77 ---- .../framing/generated/stylesheets/amqp_server.xsl | 187 ---------- .../stylesheets/amqp_server_handler_impl.xsl | 187 ---------- .../stylesheets/amqp_server_operations.xsl | 113 ------ .../framing/generated/stylesheets/code_gen.xsl | 91 ----- .../framing/generated/stylesheets/code_utils.xsl | 210 ----------- .../framing/generated/stylesheets/convert_0.81.xsl | 407 --------------------- cpp/common/framing/generated/stylesheets/cpp.xsl | 315 ---------------- .../framing/generated/stylesheets/framing.xsl | 49 --- .../framing/generated/stylesheets/prepare1.xsl | 104 ------ .../framing/generated/stylesheets/prepare2.xsl | 54 --- .../framing/generated/stylesheets/prepare3.xsl | 54 --- .../framing/generated/stylesheets/registry.xsl | 12 - cpp/common/framing/generated/stylesheets/utils.xsl | 194 ---------- 18 files changed, 2542 deletions(-) delete mode 100644 cpp/common/framing/generated/Makefile delete mode 100644 cpp/common/framing/generated/stylesheets/amqp_client.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/amqp_client_handler_impl.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/amqp_client_operations.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/amqp_consts.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/amqp_server.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/amqp_server_handler_impl.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/amqp_server_operations.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/code_gen.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/code_utils.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/convert_0.81.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/cpp.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/framing.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/prepare1.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/prepare2.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/prepare3.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/registry.xsl delete mode 100644 cpp/common/framing/generated/stylesheets/utils.xsl (limited to 'cpp/common/framing/generated') diff --git a/cpp/common/framing/generated/Makefile b/cpp/common/framing/generated/Makefile deleted file mode 100644 index 12ec402760..0000000000 --- a/cpp/common/framing/generated/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# -# Copyright (c) 2006 The Apache Software Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -QPID_HOME = ../../../.. -include ${QPID_HOME}/cpp/options.mk - -STYLESHEET_DIR = stylesheets -JAVA = java -XSLTP = ${TOOLS_DIR}/saxon8.jar - -SPEC = ${SPEC_DIR}/amqp-8.0.xml -STYLESHEETS = $(wildcard stylesheets/*.xsl) - -GENERATED_SOURCES=amqp_methods.cpp # Seed generation - -.PHONY: all clean - -all: ${GENERATED_SOURCES} - -clean : - -@rm -f *.cpp *.h - -${GENERATED_SOURCES}: ${STYLESHEETS} ${SPEC} - ${JAVA} -jar ${XSLTP} -o results.out ${SPEC} ${STYLESHEET_DIR}/code_gen.xsl - ${JAVA} -jar ${XSLTP} -o results.out ${SPEC} ${STYLESHEET_DIR}/framing.xsl - --include $(GENERATED_SOURCES:.cpp=.d) - diff --git a/cpp/common/framing/generated/stylesheets/amqp_client.xsl b/cpp/common/framing/generated/stylesheets/amqp_client.xsl deleted file mode 100644 index 13a912a926..0000000000 --- a/cpp/common/framing/generated/stylesheets/amqp_client.xsl +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - - - -#ifndef _AMQP_ServerProxy_ -#define _AMQP_ServerProxy_ - -#include "AMQP_ServerOperations.h" -#include "FieldTable.h" -#include "OutputHandler.h" - -namespace qpid { -namespace framing { - -class AMQP_ServerProxy : virtual public AMQP_ServerOperations -{ - OutputHandler* out; - - public: - AMQP_ServerProxy(OutputHandler* _out); - virtual ~AMQP_ServerProxy() {} - - - - /** ===== Class: ===== - - */ - - class : virtual public AMQP_ServerOperations::Handler - { - OutputHandler* out; - - public: - /* Constructors and destructors */ - (OutputHandler* _out); - virtual ~(); - - /* Protocol methods */ - - - - - /** ----- Method: . ----- - - */ - - - /** - Rule "": - */ - - virtual void - ( u_int16_t channel, - - - - - , - - - - ); - - - }; /* class */ - - }; /* class AMQP_ServerProxy */ - -} /* namespace framing */ -} /* namespace qpid */ - -#endif - - - - - - - - - - - -#include "AMQP_ServerProxy.h" - -namespace qpid { -namespace framing { - -AMQP_ServerProxy::AMQP_ServerProxy(OutputHandler* _out) : - out(_out) -{ -} - - - /* ++++++++++ Class: ++++++++++ */ - -AMQP_ServerProxy::::(OutputHandler* _out) : - out(_out) -{ -} - -AMQP_ServerProxy::::~() {} - - - void AMQP_ServerProxy:::: - ( u_int16_t channel - , - - - - - , - - - - ) -{ - out->send( new AMQFrame( channel, - new ( - - - - , - - - ) ) ); -} - - - - - -} /* namespace framing */ -} /* namespace qpid */ - - - - diff --git a/cpp/common/framing/generated/stylesheets/amqp_client_handler_impl.xsl b/cpp/common/framing/generated/stylesheets/amqp_client_handler_impl.xsl deleted file mode 100644 index 0cc34e0ecf..0000000000 --- a/cpp/common/framing/generated/stylesheets/amqp_client_handler_impl.xsl +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - - - - -#ifndef _AMQP_ClientHandlerImpl_ -#define _AMQP_ClientHandlerImpl_ - -#include "AMQP_ClientOperations.h" -#include "FieldTable.h" - -namespace qpid { -namespace framing { - -class AMQP_ClientHandlerImpl : virtual public AMQP_ClientOperations -{ - - - - - AMQP_ClientOperations::* - Ptr; - - - public: - AMQP_ClientHandlerImpl(); - virtual ~AMQP_ClientHandlerImpl(); - - - - - inline AMQP_ClientOperations:: - * get - () { return Ptr; } - - - - - - - - - - /** - ===== Class: Impl ===== - - */ - - - - class - Impl : virtual public AMQP_ClientOperations:: - { - public: - /* Constructors and destructors */ - Impl(); - virtual ~Impl(); - - /* Protocol methods */ - - - - - - - - - /** - ----- Method: - Impl. ----- - - */ - - - /** - Rule "": - - */ - - - - virtual void - ( u_int16_t channel - - - - , - - - - - , - - - - ); - - - }; /* class Impl */ - - }; /* AMQP_ClientHandlerImpl */ - -} /* namespace framing */ -} /* namespace qpid */ - -#endif - - - - - - - - - -#include "AMQP_ClientHandlerImpl.h" - -namespace qpid { -namespace framing { - -AMQP_ClientHandlerImpl::AMQP_ClientHandlerImpl() : - - - - HandlerPtr( new HandlerImpl() ) - - , - - - -{ -} - -AMQP_ClientHandlerImpl::~AMQP_ClientHandlerImpl() -{ - - delete HandlerPtr; - } - - - - /* ===== Class: HandlerImpl ===== */ - AMQP_ClientHandlerImpl::HandlerImpl:: - HandlerImpl() { } - AMQP_ClientHandlerImpl::HandlerImpl::~ - HandlerImpl() { } - - - void AMQP_ClientHandlerImpl::HandlerImpl:: - ( u_int16_t /*channel*/ - - , - - - - - , - - - ) { } - - - - - -} /* namespace framing */ -} /* namespace qpid */ - - - - diff --git a/cpp/common/framing/generated/stylesheets/amqp_client_operations.xsl b/cpp/common/framing/generated/stylesheets/amqp_client_operations.xsl deleted file mode 100644 index 234b7080ba..0000000000 --- a/cpp/common/framing/generated/stylesheets/amqp_client_operations.xsl +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - -#ifndef _AMQP_ClientOperations_ -#define _AMQP_ClientOperations_ - -#include "AMQP_Constants.h" -#include "FieldTable.h" - -namespace qpid { -namespace framing { - -class AMQP_ClientOperations -{ - public: - AMQP_ClientOperations() {} - virtual ~AMQP_ClientOperations() {} - inline u_int16_t getAmqpMajor() { return (u_int16_t); } - inline u_int16_t getAmqpMinor() { return (u_int16_t); } - - - - - - - - /** ===== Class: ===== - - */ - - - - class - { - public: - /* Constructors and destructors */ - () {} - virtual ~() {} - - /* Protocol methods */ - - - - - - - - - /** ----- Method: . - ----- - - */ - - - /** - Rule "": - - */ - - - - virtual void - ( u_int16_t channel - - - - , - - - - - , - - - - ) = 0; - - - }; /* class */ - - }; /* class AMQP_ClientOperations */ - -} /* namespace framing */ -} /* namespace qpid */ - -#endif - - - - diff --git a/cpp/common/framing/generated/stylesheets/amqp_consts.xsl b/cpp/common/framing/generated/stylesheets/amqp_consts.xsl deleted file mode 100644 index c1c927f941..0000000000 --- a/cpp/common/framing/generated/stylesheets/amqp_consts.xsl +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#ifndef _AMQP_Constants_ -#define _AMQP_Constants_ - -#include "amqp_types.h" - -namespace qpid { -namespace framing { - -/**** Constants ****/ - - - /* - - */ - - const u_int16_t ; - - - -} /* namespace framing */ -} /* namespace qpid */ - -#endif - - - - diff --git a/cpp/common/framing/generated/stylesheets/amqp_server.xsl b/cpp/common/framing/generated/stylesheets/amqp_server.xsl deleted file mode 100644 index 5ff8994888..0000000000 --- a/cpp/common/framing/generated/stylesheets/amqp_server.xsl +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - - - -#ifndef _AMQP_ClientProxy_ -#define _AMQP_ClientProxy_ - -#include "AMQP_ClientOperations.h" -#include "FieldTable.h" -#include "OutputHandler.h" - -namespace qpid { -namespace framing { - -class AMQP_ClientProxy : virtual public AMQP_ClientOperations -{ - public: - - AMQP_ClientProxy(OutputHandler* _out); - virtual ~AMQP_ClientProxy() {}; - - - - - - /** ===== Class: ===== - - */ - - class : virtual public AMQP_ClientOperations::Handler - { - OutputHandler* out; - - public: - /* Constructors and destructors */ - (OutputHandler* _out); - virtual ~(); - - /* Protocol methods */ - - - - - /** ----- Method: . ----- - - */ - - - /** - Rule "": - */ - - virtual void - ( u_int16_t channel, - - - - - , - - - - ); - - - }; /* class */ - - - - - ; - - - private: - - OutputHandler* out; - - - - ; - - - - - }; /* class AMQP_ClientProxy */ - -} /* namespace framing */ -} /* namespace qpid */ - -#endif - - - - - - - - - - -#include "AMQP_ClientProxy.h" - -namespace qpid { -namespace framing { - -AMQP_ClientProxy::AMQP_ClientProxy(OutputHandler* _out) : - out(_out), - - - - , - - - -{ -} - - - - /* ++++++++++ Class: ++++++++++ */ - -AMQP_ClientProxy::::(OutputHandler* _out) : - out(_out) -{ -} - -AMQP_ClientProxy::::~() {} - - - void AMQP_ClientProxy:::: - ( u_int16_t channel - , - - - - - , - - - - ) -{ - out->send( new AMQFrame( channel, - new ( - - - - , - - - ) ) ); -} - - - - - - - { - ; - } - - - - -} /* namespace framing */ -} /* namespace qpid */ - - - - diff --git a/cpp/common/framing/generated/stylesheets/amqp_server_handler_impl.xsl b/cpp/common/framing/generated/stylesheets/amqp_server_handler_impl.xsl deleted file mode 100644 index 6450d3fd0c..0000000000 --- a/cpp/common/framing/generated/stylesheets/amqp_server_handler_impl.xsl +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - - - - -#ifndef _AMQP_ServerHandlerImpl_ -#define _AMQP_ServerHandlerImpl_ - -#include "AMQP_ServerOperations.h" -#include "FieldTable.h" - -namespace qpid { -namespace framing { - -class AMQP_ServerHandlerImpl : virtual public AMQP_ServerOperations -{ - - - - - AMQP_ServerOperations::* - Ptr; - - - public: - AMQP_ServerHandlerImpl(); - virtual ~AMQP_ServerHandlerImpl(); - - - - - virtual inline AMQP_ServerOperations:: - * get - () { return Ptr; } - - - - - - - - - - /** - ===== Class: Impl ===== - - */ - - - - class - Impl : virtual public AMQP_ServerOperations:: - { - public: - /* Constructors and destructors */ - Impl(); - virtual ~Impl(); - - /* Protocol methods */ - - - - - - - - - /** - ----- Method: - Impl. ----- - - */ - - - /** - Rule "": - - */ - - - - virtual void - ( u_int16_t channel - - - - , - - - - - , - - - - ); - - - }; /* class Impl */ - - }; /* AMQP_ServerHandlerImpl */ - -} /* namespace framing */ -} /* namespace qpid */ - -#endif - - - - - - - - - -#include "AMQP_ServerHandlerImpl.h" - -namespace qpid { -namespace framing { - -AMQP_ServerHandlerImpl::AMQP_ServerHandlerImpl() : - - - - HandlerPtr( new HandlerImpl() ) - - , - - - -{ -} - -AMQP_ServerHandlerImpl::~AMQP_ServerHandlerImpl() -{ - - delete HandlerPtr; - } - - - - /* ===== Class: HandlerImpl ===== */ - AMQP_ServerHandlerImpl::HandlerImpl:: - HandlerImpl() { } - AMQP_ServerHandlerImpl::HandlerImpl::~ - HandlerImpl() { } - - - void AMQP_ServerHandlerImpl::HandlerImpl:: - ( u_int16_t /*channel*/ - - , - - - - - , - - - ) { } - - - - - -} /* namespace framing */ -} /* namespace qpid */ - - - - diff --git a/cpp/common/framing/generated/stylesheets/amqp_server_operations.xsl b/cpp/common/framing/generated/stylesheets/amqp_server_operations.xsl deleted file mode 100644 index 4b97700f04..0000000000 --- a/cpp/common/framing/generated/stylesheets/amqp_server_operations.xsl +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - - - -#ifndef _AMQP_ServerOperations_ -#define _AMQP_ServerOperations_ - -#include "AMQP_Constants.h" -#include "FieldTable.h" - -namespace qpid { -namespace framing { - -class AMQP_ServerOperations -{ - public: - AMQP_ServerOperations() {} - virtual ~AMQP_ServerOperations() {} - inline u_int16_t getAmqpMajor() { return (u_int16_t); } - inline u_int16_t getAmqpMinor() { return (u_int16_t); } - - - - - - - - /** ===== Class: ===== - - */ - - - - class - { - public: - /* Constructors and destructors */ - () {} - virtual ~() {} - - /* Protocol methods */ - - - - - - - - - /** ----- Method: . - ----- - - */ - - - /** - Rule "": - - */ - - - - virtual void - ( u_int16_t channel - - - - , - - - - - , - - - - ) = 0; - - - }; /* class */ - - - - - virtual AMQP_ServerOperations:: - * get - () = 0; - - - }; /* class AMQP_ServerOperations */ - -} /* namespace framing */ -} /* namespace qpid */ - -#endif - - - - diff --git a/cpp/common/framing/generated/stylesheets/code_gen.xsl b/cpp/common/framing/generated/stylesheets/code_gen.xsl deleted file mode 100644 index 5e9f4ef8f0..0000000000 --- a/cpp/common/framing/generated/stylesheets/code_gen.xsl +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/common/framing/generated/stylesheets/code_utils.xsl b/cpp/common/framing/generated/stylesheets/code_utils.xsl deleted file mode 100644 index f4a0f6e5ce..0000000000 --- a/cpp/common/framing/generated/stylesheets/code_utils.xsl +++ /dev/null @@ -1,210 +0,0 @@ - - - - - /** -* -* Copyright (c) 2006 The Apache Software Foundation -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* NOTE: This file is generated directly from the AMQP XML specification. -* === DO NOT EDIT === -* -*/ - - - - - - - - - - - - - delete_ - return_ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - u_int8_t - u_int16_t - string - string - bool - u_int32_t - u_int64_t - u_int64_t - - FieldTable - - unknown_type /* WARNING: undefined type */ - - - - - - - - & - & - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/common/framing/generated/stylesheets/convert_0.81.xsl b/cpp/common/framing/generated/stylesheets/convert_0.81.xsl deleted file mode 100644 index 9924f165da..0000000000 --- a/cpp/common/framing/generated/stylesheets/convert_0.81.xsl +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - ==================== - Constants - ==================== - - - - - - - - - - ==================== - Domains - ==================== - - - - - - - - - Elementary domains - - bit - bit - single bit - - - octet - octet - single octet - - - short - short - 16-bit integer - - - long - long - 32-bit integer - - - longlong - longlong - 64-bit integer - - - shortstr - shortstr - short string - - - longstr - longstr - long string - - - timestamp - timestamp - 64-bit timestamp - - - table - table - field table - - - - - - ==================== - Classes - ==================== - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -rule__ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -doc_rule__ - - - - - - - - - - - -grammar - - - - - - - - - - - - diff --git a/cpp/common/framing/generated/stylesheets/cpp.xsl b/cpp/common/framing/generated/stylesheets/cpp.xsl deleted file mode 100644 index f9e5ba4141..0000000000 --- a/cpp/common/framing/generated/stylesheets/cpp.xsl +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - - - - - - - - - - - -#include "amqp_framing.h" - - - - - - - - - - - - -#include "amqp_types.h" -#include "AMQP_ServerOperations.h" -#include "AMQMethodBody.h" -#include "Buffer.h" -#include "FieldTable.h" - -#ifndef __ -#define __ - -namespace qpid { -namespace framing { - - - - -} -} - -#endif - - - - - - - - -/** - * This class is autogenerated, do not modify. [From ] - */ -class : virtual public AMQMethodBody -{ - - - - ; - - -public: - typedef std::tr1::shared_ptr<> shared_ptr; - - virtual ~() {} - - - inline ; } - - - - inline void print(std::ostream& out) const{ - out << "" - - << ", - ="<< - - - ; - } - - inline u_int16_t amqpClassId() const { - return ; - } - - inline u_int16_t amqpMethodId() const { - return ; - } - - inline u_int32_t bodySize() const { - - - return - - + - - - - ; - - return 0; - - } - - - inline void invoke(AMQP_ServerOperations& target, u_int16_t channel) { - - - ); - - - ; - - } - - - inline void encodeContent(Buffer& buffer) const - { - - u_int8_t flags = 0; - - ; - - - - - ; - - - buffer.putOctet(flags); - - - } - - inline void decodeContent(Buffer& buffer) - { - - - - u_int8_t flags = buffer.getOctet(); - ; - - - ; - - - - } - - - - inline () : - { - } - - - inline () - { - } -}; - - - - - -/** - * This file is autogenerated, do not modify. - */ - -#ifndef AMQ_METHODS_H -#define AMQ_METHODS_H - - -#include ".h" - - -namespace qpid { -namespace framing { - - -const ; - - -AMQMethodBody* createAMQMethodBody(u_int16_t classId, u_int16_t methodId); - -} -} - -#endif - - - - - -#include "amqp_methods.h" -#include "QpidError.h" - -namespace qpid { -namespace framing { -/** - * This method is autogenerated, do not modify. - */ -AMQMethodBody* createAMQMethodBody(u_int16_t classId, u_int16_t methodId){ - switch(classId * 1000 + methodId) - { - - case - - * 1000 + - - : return new - (); - - } - THROW_QPID_ERROR(FRAMING_ERROR, "Unknown method"); -} - -} -} - - - - - -#include "amqp_types.h" -#include "FieldTable.h" - -#ifndef _AMQPServer_ -#define _AMQPServer_ - -namespace qpid { -namespace framing { - -class AMQPServer -{ - public: - - - class { - public: - - - virtual void (u_int16_t channel, ) = 0; - - - virtual void (u_int16_t channel) = 0; - - - virtual ~(){} - }; - - virtual () = 0; - - - virtual ~AMQPServer(){} -}; - -} -} - -#endif - - - -#include "amqp_types.h" -#include "FieldTable.h" - -#ifndef _AMQPClient_ -#define _AMQPClient_ - -namespace qpid { -namespace framing { - -class AMQPClient -{ - public: - - - class { - public: - - - virtual void (u_int16_t channel, ) = 0; - - - virtual void (u_int16_t channel) = 0; - - - virtual ~(){} - }; - - virtual () = 0; - - - - virtual ~AMQPClient(){} -}; - -} -} - -#endif - - - - - diff --git a/cpp/common/framing/generated/stylesheets/framing.xsl b/cpp/common/framing/generated/stylesheets/framing.xsl deleted file mode 100644 index c63e719a77..0000000000 --- a/cpp/common/framing/generated/stylesheets/framing.xsl +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/common/framing/generated/stylesheets/prepare1.xsl b/cpp/common/framing/generated/stylesheets/prepare1.xsl deleted file mode 100644 index 2aeda89677..0000000000 --- a/cpp/common/framing/generated/stylesheets/prepare1.xsl +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - - - - ( - major= - , minor= - ) - - - - - - - - - - - - - - - - - - - - - - - - Could not inherit from ; file not found. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - - - true - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/common/framing/generated/stylesheets/prepare2.xsl b/cpp/common/framing/generated/stylesheets/prepare2.xsl deleted file mode 100644 index 331319de57..0000000000 --- a/cpp/common/framing/generated/stylesheets/prepare2.xsl +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/common/framing/generated/stylesheets/prepare3.xsl b/cpp/common/framing/generated/stylesheets/prepare3.xsl deleted file mode 100644 index 27a4764e4f..0000000000 --- a/cpp/common/framing/generated/stylesheets/prepare3.xsl +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/common/framing/generated/stylesheets/registry.xsl b/cpp/common/framing/generated/stylesheets/registry.xsl deleted file mode 100644 index a818a0a871..0000000000 --- a/cpp/common/framing/generated/stylesheets/registry.xsl +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/cpp/common/framing/generated/stylesheets/utils.xsl b/cpp/common/framing/generated/stylesheets/utils.xsl deleted file mode 100644 index 70743112a9..0000000000 --- a/cpp/common/framing/generated/stylesheets/utils.xsl +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - - - u_int8_t - u_int16_t - string - string - bool - u_int32_t - u_int64_t - FieldTable - Object /*WARNING: undefined type*/ - - - - - - u_int8_t - u_int16_t - const string& - const string& - bool - u_int32_t - u_int64_t - FieldTable& - Object /*WARNING: undefined type*/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /* WARNING: COULD NOT DETERMINE FIELD SIZE */ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /* WARNING: COULD NOT DETERMINE ENCODER */ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /* WARNING: COULD NOT DETERMINE DECODER */ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- cgit v1.2.1