diff options
author | Gordon Sim <gsim@apache.org> | 2010-01-12 12:02:38 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2010-01-12 12:02:38 +0000 |
commit | f47385682d2e9a82d007481e2c6d171a68dffa5f (patch) | |
tree | 272cc16ac4b05ce23aab1dd22fcd751c8dd6f3db /cpp/src/qpid/messaging/MessageImpl.h | |
parent | 0528688ee4f8831b05576e2448d0835d6375ee82 (diff) | |
download | qpid-python-f47385682d2e9a82d007481e2c6d171a68dffa5f.tar.gz |
QPID-664: Added some of the missing standard message headers. Added two new test utilities for sending and receiving with the new API (both still works in progress).
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@898296 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/messaging/MessageImpl.h')
-rw-r--r-- | cpp/src/qpid/messaging/MessageImpl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/qpid/messaging/MessageImpl.h b/cpp/src/qpid/messaging/MessageImpl.h index 4939cdc5cc..bdbc1f6a1e 100644 --- a/cpp/src/qpid/messaging/MessageImpl.h +++ b/cpp/src/qpid/messaging/MessageImpl.h @@ -33,6 +33,12 @@ struct MessageImpl Address replyTo; std::string subject; std::string contentType; + std::string messageId; + std::string userId; + std::string correlationId; + uint64_t ttl; + bool durable; + bool redelivered; Variant::Map headers; std::string bytes; |