diff options
author | Ted Ross <tross@apache.org> | 2010-07-28 18:35:15 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2010-07-28 18:35:15 +0000 |
commit | 1c077959ef54f616ec12e9644b4f07557a3e220d (patch) | |
tree | 90e1adeb4285b64073971d0facf016569b142f26 /cpp/src/qpid/messaging/MessageImpl.h | |
parent | 1939f9db799507eabfc7eb1daa74e3cb31b5b252 (diff) | |
download | qpid-python-1c077959ef54f616ec12e9644b4f07557a3e220d.tar.gz |
Made the new C++ API more friendly for swig-wrapping.
- Added Message::setProperty() as an alternative to using getProperties() to obtain
a writable reference to a Variant::Map.
- Added unit testing for this new method.
- Added #ifndef SWIG conditions around the declarations of non-member operator<< methods.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@980147 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/messaging/MessageImpl.h')
-rw-r--r-- | cpp/src/qpid/messaging/MessageImpl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/qpid/messaging/MessageImpl.h b/cpp/src/qpid/messaging/MessageImpl.h index 7793fc7943..57df6b3fda 100644 --- a/cpp/src/qpid/messaging/MessageImpl.h +++ b/cpp/src/qpid/messaging/MessageImpl.h @@ -60,6 +60,7 @@ struct MessageImpl const qpid::types::Variant::Map& getHeaders() const; qpid::types::Variant::Map& getHeaders(); + void setHeader(const std::string& key, const qpid::types::Variant& val); void setBytes(const std::string& bytes); void setBytes(const char* chars, size_t count); |