diff options
| author | Gordon Sim <gsim@apache.org> | 2007-09-10 08:41:05 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-09-10 08:41:05 +0000 |
| commit | a5c0fde5d0b96ae0b747f0cea21414753d6ee654 (patch) | |
| tree | 4a809a880691db3e04fa3c7374db500b767ca85b /cpp/src/qpid/framing/MethodContent.h | |
| parent | 783b718d0b270121cd2e597424d0c81adea77a38 (diff) | |
| download | qpid-python-a5c0fde5d0b96ae0b747f0cea21414753d6ee654.tar.gz | |
Client side support for message and delivery properties in header segments.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@574176 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing/MethodContent.h')
| -rw-r--r-- | cpp/src/qpid/framing/MethodContent.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/qpid/framing/MethodContent.h b/cpp/src/qpid/framing/MethodContent.h index 11d8d42cab..737c0d6b7b 100644 --- a/cpp/src/qpid/framing/MethodContent.h +++ b/cpp/src/qpid/framing/MethodContent.h @@ -21,7 +21,8 @@ #ifndef _MethodContent_ #define _MethodContent_ -#include "HeaderProperties.h" +#include <string> +#include "AMQHeaderBody.h" namespace qpid { namespace framing { @@ -31,7 +32,7 @@ class MethodContent public: virtual ~MethodContent() {} //TODO: rethink this interface - virtual const HeaderProperties& getMethodHeaders() const = 0; + virtual AMQHeaderBody getHeader() const = 0; virtual const std::string& getData() const = 0; }; |
