summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/client/Dispatcher.cpp
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-04-23 22:23:59 +0000
committerStephen D. Huston <shuston@apache.org>2009-04-23 22:23:59 +0000
commit7db52d95099fb7ae237277f12e4e368cf643f174 (patch)
tree98e72a154d9fefdd49eeddf89c9a5d120d787cd1 /cpp/src/qpid/client/Dispatcher.cpp
parentc619faf8f8aa5f3aeb182934769d4474689668b1 (diff)
downloadqpid-python-7db52d95099fb7ae237277f12e4e368cf643f174.tar.gz
Move client::Dispatcher destructor from .cpp to .h to avoid having to export it on Windows; Added new client files to client.vcproj
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@768081 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Dispatcher.cpp')
-rw-r--r--cpp/src/qpid/client/Dispatcher.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/src/qpid/client/Dispatcher.cpp b/cpp/src/qpid/client/Dispatcher.cpp
index 5156031748..9efc205b23 100644
--- a/cpp/src/qpid/client/Dispatcher.cpp
+++ b/cpp/src/qpid/client/Dispatcher.cpp
@@ -48,10 +48,7 @@ Dispatcher::Dispatcher(const Session& s, const std::string& q)
queue = q.empty() ?
session.getExecution().getDemux().getDefault() :
session.getExecution().getDemux().get(q);
-}
-
-Dispatcher::~Dispatcher() {}
-
+}
void Dispatcher::start()
{