diff options
author | Carl C. Trieloff <cctrieloff@apache.org> | 2007-01-09 19:44:50 +0000 |
---|---|---|
committer | Carl C. Trieloff <cctrieloff@apache.org> | 2007-01-09 19:44:50 +0000 |
commit | 13659cefe235ac0228749ba53e534910b9aae193 (patch) | |
tree | 048e91f6708aa307a239ad1df65f551161a971ba /qpid/cpp/tests/LazyLoadedContentTest.cpp | |
parent | 639e998c5fe03fc0a73667887af6a1828d400c0e (diff) | |
download | qpid-python-13659cefe235ac0228749ba53e534910b9aae193.tar.gz |
Most of remaining version changes for C++. Still need to deal with AMQFrame
defualt constructor and do some clean up here and there..
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@494540 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/tests/LazyLoadedContentTest.cpp')
-rw-r--r-- | qpid/cpp/tests/LazyLoadedContentTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/cpp/tests/LazyLoadedContentTest.cpp b/qpid/cpp/tests/LazyLoadedContentTest.cpp index a8e7d61e0d..2075a6dd3a 100644 --- a/qpid/cpp/tests/LazyLoadedContentTest.cpp +++ b/qpid/cpp/tests/LazyLoadedContentTest.cpp @@ -19,6 +19,7 @@ * */ #include <LazyLoadedContent.h> +#include <AMQP_HighestVersion.h> #include <NullMessageStore.h> #include <qpid_test_plugin.h> #include <iostream> @@ -99,7 +100,7 @@ public: LazyLoadedContent content(&store, 0, in.size()); DummyHandler handler; u_int16_t channel = 3; - content.send(&handler, channel, framesize); + content.send(highestProtocolVersion, &handler, channel, framesize); check(handler, channel, outCount, out); } |