From ca3a7cd64822e874076bd23e9981af077eb47b03 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Fri, 13 Apr 2007 20:58:27 +0000 Subject: Moved src/ source code to src/qpid directory: - allows rhm package to build consistently against checked-out or installed qpid. - consistent correspondence between source paths and C++ namespaces. - consistent use of #include in source and by users. - allows header files to split over multiple directories, e.g. separating generated code, separating public API from private files. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@528668 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/framing/FramingContent.h | 41 ---------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 cpp/src/framing/FramingContent.h (limited to 'cpp/src/framing/FramingContent.h') diff --git a/cpp/src/framing/FramingContent.h b/cpp/src/framing/FramingContent.h deleted file mode 100644 index 876e90c905..0000000000 --- a/cpp/src/framing/FramingContent.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifndef _framing_FramingContent_h -#define _framing_FramingContent_h - -#include - -namespace qpid { -namespace framing { - -enum discriminator_types { INLINE = 0, REFERENCE = 1 }; - -/** - * A representation of the AMQP 'content' data type (used for message - * bodies) which can hold inline data or a reference. - */ -class Content -{ - uint8_t discriminator; - string value; - - void validate(); - - public: - Content(); - Content(uint8_t _discriminator, const string& _value); - ~Content(); - - void encode(Buffer& buffer) const; - void decode(Buffer& buffer); - size_t size() const; - bool isInline() const { return discriminator == INLINE; } - bool isReference() const { return discriminator == REFERENCE; } - const string& getValue() const { return value; } - void setValue(const string& newValue) { value = newValue; } - - friend std::ostream& operator<<(std::ostream&, const Content&); -}; - -}} // namespace qpid::framing - - -#endif /*!_framing_FramingContent_h*/ -- cgit v1.2.1