diff options
author | Gordon Sim <gsim@apache.org> | 2009-10-02 13:01:51 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2009-10-02 13:01:51 +0000 |
commit | 1442aac5016d54db03dff3411751f560097606b0 (patch) | |
tree | 7c71f54e7d4c99ac47582d445b0324efb10a120e /qpid/cpp/examples/messaging/client.cpp | |
parent | 89024aa7017ed715223832420c11cf391f06fbad (diff) | |
download | qpid-python-1442aac5016d54db03dff3411751f560097606b0.tar.gz |
define content- and view- classes separately from message class
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@821000 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/examples/messaging/client.cpp')
-rw-r--r-- | qpid/cpp/examples/messaging/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/examples/messaging/client.cpp b/qpid/cpp/examples/messaging/client.cpp index 45c065880b..de6d7768df 100644 --- a/qpid/cpp/examples/messaging/client.cpp +++ b/qpid/cpp/examples/messaging/client.cpp @@ -63,7 +63,7 @@ int main(int argc, char** argv) { request.setContent(s[i]); sender.send(request); Message response = receiver.fetch(); - std::cout << request.getContent().asString() << " -> " << response.getContent().asString() << std::endl; + std::cout << request.getContent() << " -> " << response.getContent() << std::endl; } connection.close(); return 0; |