summaryrefslogtreecommitdiff
path: root/cpp/lib/common/framing/FramingContent.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-03-21 19:12:14 +0000
committerAlan Conway <aconway@apache.org>2007-03-21 19:12:14 +0000
commitc1b0ba624ff2de40b23342cf2a96885342884dad (patch)
treef4fa4ef721b1fe98543cb49cc2c31f03cee452ed /cpp/lib/common/framing/FramingContent.h
parentdf4faa062b3512312c78167bfbdf19ff969210ac (diff)
downloadqpid-python-c1b0ba624ff2de40b23342cf2a96885342884dad.tar.gz
Refactored client side for dual-mode Channel supporting either 0-9 Message or 0-8 Basic.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@520972 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/common/framing/FramingContent.h')
-rw-r--r--cpp/lib/common/framing/FramingContent.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/lib/common/framing/FramingContent.h b/cpp/lib/common/framing/FramingContent.h
index 696bcc7c1a..876e90c905 100644
--- a/cpp/lib/common/framing/FramingContent.h
+++ b/cpp/lib/common/framing/FramingContent.h
@@ -30,6 +30,7 @@ class Content
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&);
};