summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/io/SessionContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/io/SessionContext.h')
-rw-r--r--cpp/src/qpid/io/SessionContext.h17
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