diff options
| author | Alan Conway <aconway@apache.org> | 2006-10-31 19:53:55 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2006-10-31 19:53:55 +0000 |
| commit | 9094d2b10ecadd66fa3b22169183e7573cc79629 (patch) | |
| tree | bf3915f72be2a5f09932b800d2fa4309fb3ad64e /cpp/src/qpid/framing/OutputHandler.h | |
| parent | 0487ea40bc6568765cdec75a36273eeb26fae854 (diff) | |
| download | qpid-python-9094d2b10ecadd66fa3b22169183e7573cc79629.tar.gz | |
IO refactor phase 1. Reduced dependencies, removed redundant classes.
Renamed pricipal APR classes in preparation for move to apr namespace.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@469625 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing/OutputHandler.h')
| -rw-r--r-- | cpp/src/qpid/framing/OutputHandler.h | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/cpp/src/qpid/framing/OutputHandler.h b/cpp/src/qpid/framing/OutputHandler.h index ed38a321e5..16fb7e8afb 100644 --- a/cpp/src/qpid/framing/OutputHandler.h +++ b/cpp/src/qpid/framing/OutputHandler.h @@ -1,3 +1,6 @@ +#ifndef _OutputHandler_ +#define _OutputHandler_ + /* * * Copyright (c) 2006 The Apache Software Foundation @@ -15,24 +18,18 @@ * limitations under the License. * */ -#include <string> - -#ifndef _OutputHandler_ -#define _OutputHandler_ - +#include <qpid/SharedObject.h> #include "qpid/framing/AMQFrame.h" namespace qpid { namespace framing { - class OutputHandler{ - public: - virtual ~OutputHandler(); - virtual void send(AMQFrame* frame) = 0; - }; +class OutputHandler : public qpid::SharedObject<OutputHandler> { + public: + virtual void send(AMQFrame* frame) = 0; +}; -} -} +}} #endif |
