summaryrefslogtreecommitdiff
path: root/cpp/src/tests/SimpleTestCaseBase.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-06-02 21:38:25 +0000
committerAlan Conway <aconway@apache.org>2008-06-02 21:38:25 +0000
commit3ff35b94f59f92bf33c8f4d29643c4ad899b4673 (patch)
treef45d78a5d4a03408e813cc1fc82f7ba749053d44 /cpp/src/tests/SimpleTestCaseBase.h
parent93aa60d35700a912d47719770f294135292359e6 (diff)
downloadqpid-python-3ff35b94f59f92bf33c8f4d29643c4ad899b4673.tar.gz
Separate option parsing from qpid::client::ClientSettings.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@662581 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/SimpleTestCaseBase.h')
-rw-r--r--cpp/src/tests/SimpleTestCaseBase.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/tests/SimpleTestCaseBase.h b/cpp/src/tests/SimpleTestCaseBase.h
index e2c328437e..0c1052d0c2 100644
--- a/cpp/src/tests/SimpleTestCaseBase.h
+++ b/cpp/src/tests/SimpleTestCaseBase.h
@@ -28,7 +28,7 @@
#include "qpid/client/Channel.h"
#include "qpid/client/Message.h"
#include "qpid/client/Connection.h"
-#include "qpid/client/ConnectionSettings.h"
+#include "ConnectionOptions.h"
#include "qpid/client/MessageListener.h"
#include "TestCase.h"
@@ -50,7 +50,7 @@ protected:
public:
- Worker(ConnectionSettings& options, const int messages);
+ Worker(ConnectionOptions& options, const int messages);
virtual ~Worker(){}
virtual void stop();
@@ -64,7 +64,7 @@ protected:
const Exchange& exchange;
const std::string key;
public:
- Sender(ConnectionSettings& options,
+ Sender(ConnectionOptions& options,
const Exchange& exchange,
const std::string& key,
const int messages);
@@ -75,7 +75,7 @@ protected:
std::auto_ptr<Worker> worker;
public:
- virtual void assign(const std::string& role, framing::FieldTable& params, ConnectionSettings& options) = 0;
+ virtual void assign(const std::string& role, framing::FieldTable& params, ConnectionOptions& options) = 0;
virtual ~SimpleTestCaseBase() {}