diff options
Diffstat (limited to 'qpid/cpp/lib/common/framing/FramingContent.h')
-rw-r--r-- | qpid/cpp/lib/common/framing/FramingContent.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/lib/common/framing/FramingContent.h b/qpid/cpp/lib/common/framing/FramingContent.h index 696bcc7c1a..876e90c905 100644 --- a/qpid/cpp/lib/common/framing/FramingContent.h +++ b/qpid/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&); }; |