summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rw-r--r--cpp/tests/InProcessBroker.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/cpp/tests/InProcessBroker.h b/cpp/tests/InProcessBroker.h
index 8ace039bfe..9cd7cc69cb 100644
--- a/cpp/tests/InProcessBroker.h
+++ b/cpp/tests/InProcessBroker.h
@@ -22,6 +22,7 @@
#include <iostream>
#include <algorithm>
+#include "AMQP_HighestVersion.h"
#include "framing/AMQFrame.h"
#include "broker/Broker.h"
#include "broker/Connection.h"
@@ -70,7 +71,9 @@ class InProcessBroker : public client::Connector {
};
typedef std::vector<Frame> Conversation;
- InProcessBroker(framing::ProtocolVersion ver) :
+ InProcessBroker(framing::ProtocolVersion ver=
+ framing::highestProtocolVersion
+ ) :
Connector(ver),
protocolInit(ver),
broker(broker::Broker::create()),
@@ -151,8 +154,9 @@ class InProcessBrokerClient : public qpid::client::Connection {
qpid::broker::InProcessBroker broker;
/** Constructor creates broker and opens client connection. */
- InProcessBrokerClient(qpid::framing::ProtocolVersion version)
- : broker(version)
+ InProcessBrokerClient(qpid::framing::ProtocolVersion version=
+ qpid::framing::highestProtocolVersion
+ ) : broker(version)
{
setConnector(broker);
open("");