summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/framing/InputHandler.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-11-01 02:11:58 +0000
committerAlan Conway <aconway@apache.org>2006-11-01 02:11:58 +0000
commite9aa3a26157cdbcd42fd78a539dbe2bc3c7e5752 (patch)
tree09871ceb960cf38c4ac9c33b1368677a7216114e /cpp/src/qpid/framing/InputHandler.h
parentdda71d21e76e01918ebec2d80dd8e077f94216e0 (diff)
downloadqpid-python-e9aa3a26157cdbcd42fd78a539dbe2bc3c7e5752.tar.gz
Misc. cleanup.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@469753 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing/InputHandler.h')
-rw-r--r--cpp/src/qpid/framing/InputHandler.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/qpid/framing/InputHandler.h b/cpp/src/qpid/framing/InputHandler.h
index 8f56d176b8..ef9827283c 100644
--- a/cpp/src/qpid/framing/InputHandler.h
+++ b/cpp/src/qpid/framing/InputHandler.h
@@ -18,14 +18,15 @@
*
*/
-#include <qpid/SharedObject.h>
#include "qpid/framing/AMQFrame.h"
+#include <boost/noncopyable.hpp>
namespace qpid {
namespace framing {
-class InputHandler : public qpid::SharedObject<InputHandler> {
+class InputHandler : private boost::noncopyable {
public:
+ virtual ~InputHandler() {}
virtual void received(AMQFrame* frame) = 0;
};