diff options
author | Gordon Sim <gsim@apache.org> | 2010-01-15 15:17:01 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2010-01-15 15:17:01 +0000 |
commit | 04db3be5386fbc601d11fab7da48b592c997c590 (patch) | |
tree | 732ee326d1b8f7d065fe11dd86c86437705aa465 /qpid/cpp/examples/messaging/map_sender.cpp | |
parent | 9bd81bba1b45eb52b07d30d2a44e7ef669769de4 (diff) | |
download | qpid-python-04db3be5386fbc601d11fab7da48b592c997c590.tar.gz |
QPID-2323: add a Uuid type and allow it as the value of a Variant.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@899657 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/examples/messaging/map_sender.cpp')
-rw-r--r-- | qpid/cpp/examples/messaging/map_sender.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/examples/messaging/map_sender.cpp b/qpid/cpp/examples/messaging/map_sender.cpp index 02c6433836..50150fa3d5 100644 --- a/qpid/cpp/examples/messaging/map_sender.cpp +++ b/qpid/cpp/examples/messaging/map_sender.cpp @@ -53,6 +53,7 @@ int main(int argc, char** argv) { colours.push_back(Variant("green")); colours.push_back(Variant("white")); content["colours"] = colours; + content["uuid"] = Uuid(true); content.encode(); sender.send(message); |