From 9094d2b10ecadd66fa3b22169183e7573cc79629 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 31 Oct 2006 19:53:55 +0000 Subject: 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 --- cpp/src/qpid/framing/OutputHandler.h | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'cpp/src/qpid/framing/OutputHandler.h') 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 - -#ifndef _OutputHandler_ -#define _OutputHandler_ - +#include #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 { + public: + virtual void send(AMQFrame* frame) = 0; +}; -} -} +}} #endif -- cgit v1.2.1