summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/MessagingFixture.h
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2014-07-01 19:12:38 +0000
committerAndrew Stitcher <astitcher@apache.org>2014-07-01 19:12:38 +0000
commitc1ed3d54c1132c2810e907d87ecec7f5491b118b (patch)
tree54f088a87c705374737f477a4160853b352dcbd4 /qpid/cpp/src/tests/MessagingFixture.h
parentb2bd2715e9b15271fb051e594f8bd141cf4b073a (diff)
downloadqpid-python-c1ed3d54c1132c2810e907d87ecec7f5491b118b.tar.gz
QPID-3921: Refactored Broker::Options into its own independent class
- Now called BrokerOptions - Added extra getters to Broker so that nothing else needs to know about BrokerOptions - Significantly reduces header coupling as lots of files include Broker.h, but now don't need Options.h git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1607166 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/MessagingFixture.h')
-rw-r--r--qpid/cpp/src/tests/MessagingFixture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/MessagingFixture.h b/qpid/cpp/src/tests/MessagingFixture.h
index 1d70d4cfa6..2d780fea14 100644
--- a/qpid/cpp/src/tests/MessagingFixture.h
+++ b/qpid/cpp/src/tests/MessagingFixture.h
@@ -103,7 +103,7 @@ struct MessagingFixture : public BrokerFixture
messaging::Session session;
BrokerAdmin admin;
- MessagingFixture(Broker::Options opts = Broker::Options(), bool mgmtEnabled=false) :
+ MessagingFixture(BrokerOptions opts = BrokerOptions(), bool mgmtEnabled=false) :
BrokerFixture(opts, mgmtEnabled),
connection(open(broker->getPort(Broker::TCP_TRANSPORT))),
session(connection.createSession()),