summaryrefslogtreecommitdiff
path: root/cpp/lib/common/framing/FramingContent.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/lib/common/framing/FramingContent.h')
-rw-r--r--cpp/lib/common/framing/FramingContent.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/cpp/lib/common/framing/FramingContent.h b/cpp/lib/common/framing/FramingContent.h
deleted file mode 100644
index 876e90c905..0000000000
--- a/cpp/lib/common/framing/FramingContent.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef _framing_FramingContent_h
-#define _framing_FramingContent_h
-
-#include <ostream>
-
-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*/