diff options
Diffstat (limited to 'cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.cpp')
-rw-r--r-- | cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.cpp b/cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.cpp index 5bcf3fe401..e3bfe9ae7a 100644 --- a/cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.cpp +++ b/cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.cpp @@ -32,10 +32,8 @@ namespace storePerftools { namespace asyncPerf { MessageAsyncContext::MessageAsyncContext(boost::intrusive_ptr<SimpleMessage> msg, - const qpid::asyncStore::AsyncOperation::opCode op, boost::shared_ptr<SimpleQueue> q) : m_msg(msg), - m_op(op), m_q(q) { assert(m_msg.get() != 0); @@ -45,18 +43,6 @@ MessageAsyncContext::MessageAsyncContext(boost::intrusive_ptr<SimpleMessage> msg MessageAsyncContext::~MessageAsyncContext() {} -qpid::asyncStore::AsyncOperation::opCode -MessageAsyncContext::getOpCode() const -{ - return m_op; -} - -const char* -MessageAsyncContext::getOpStr() const -{ - return qpid::asyncStore::AsyncOperation::getOpStr(m_op); -} - boost::intrusive_ptr<SimpleMessage> MessageAsyncContext::getMessage() const { |