diff options
author | Alan Conway <aconway@apache.org> | 2006-11-01 02:11:58 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-11-01 02:11:58 +0000 |
commit | e9aa3a26157cdbcd42fd78a539dbe2bc3c7e5752 (patch) | |
tree | 09871ceb960cf38c4ac9c33b1368677a7216114e /cpp/src/qpid/io/SessionContext.h | |
parent | dda71d21e76e01918ebec2d80dd8e077f94216e0 (diff) | |
download | qpid-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/io/SessionContext.h')
-rw-r--r-- | cpp/src/qpid/io/SessionContext.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/cpp/src/qpid/io/SessionContext.h b/cpp/src/qpid/io/SessionContext.h index b8fa8de62e..c9a2ce49f2 100644 --- a/cpp/src/qpid/io/SessionContext.h +++ b/cpp/src/qpid/io/SessionContext.h @@ -23,15 +23,16 @@ namespace qpid { namespace io { - class SessionContext : public virtual qpid::framing::OutputHandler - { - public: - virtual void close() = 0; - virtual ~SessionContext(){} - }; +/** + * Provides the output handler associated with a connection. + */ +class SessionContext : public virtual qpid::framing::OutputHandler +{ + public: + virtual void close() = 0; +}; -} -} +}} #endif |