summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-01-04 22:42:56 +0000
committerAlan Conway <aconway@apache.org>2007-01-04 22:42:56 +0000
commit04f454c9c580a7ad77698e7e4a7e8ce25e59b14f (patch)
treebfa28aa6c1ea75bffd2bc912467eb7285abb79d3 /cpp
parent3abb0dbcd8fa4c5e0ab89abc32aec684a3165069 (diff)
downloadqpid-python-04f454c9c580a7ad77698e7e4a7e8ce25e59b14f.tar.gz
Compile fixes, still not complete: #def class in FramingContent.h
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@492787 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/lib/broker/SessionHandlerImpl.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/lib/broker/SessionHandlerImpl.h b/cpp/lib/broker/SessionHandlerImpl.h
index 7e631b4505..cdfccead27 100644
--- a/cpp/lib/broker/SessionHandlerImpl.h
+++ b/cpp/lib/broker/SessionHandlerImpl.h
@@ -257,10 +257,11 @@ class SessionHandlerImpl : public virtual qpid::sys::SessionHandler,
inline virtual StreamHandler* getStreamHandler(){ throw ConnectionException(540, "Stream class not implemented"); }
inline virtual DtxHandler* getDtxHandler(){ throw ConnectionException(540, "Dtx class not implemented"); }
inline virtual TunnelHandler* getTunnelHandler(){ throw ConnectionException(540, "Tunnel class not implemented"); }
-
+
+ // FIXME aconway 2007-01-04: what's this about?
// Temporary add-in to resolve version conflicts: AMQP v8.0 still defines class Test;
// however v0.9 will not - kpvdr 2006-11-17
- inline virtual TestHandler* getTestHandler(){ throw ConnectionException(540, "Test class not implemented"); }
+ // inline virtual TestHandler* getTestHandler(){ throw ConnectionException(540, "Test class not implemented"); }
};
}