diff options
| author | Gordon Sim <gsim@apache.org> | 2008-03-17 12:17:55 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2008-03-17 12:17:55 +0000 |
| commit | 6574ab48665039ae9b8b1d2c5dd26ea94a3d23fa (patch) | |
| tree | 01091458f1db56d09953cd129305586057df1384 /cpp/src/qpid/broker/ConnectionToken.h | |
| parent | 1c1efeddef24ef18d75af65e4249b541b1382ea8 (diff) | |
| download | qpid-python-6574ab48665039ae9b8b1d2c5dd26ea94a3d23fa.tar.gz | |
Scope exclusive queues to sessions.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@637854 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/ConnectionToken.h')
| -rw-r--r-- | cpp/src/qpid/broker/ConnectionToken.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/ConnectionToken.h b/cpp/src/qpid/broker/ConnectionToken.h index 7e7f813d0e..38b7d7d098 100644 --- a/cpp/src/qpid/broker/ConnectionToken.h +++ b/cpp/src/qpid/broker/ConnectionToken.h @@ -21,13 +21,14 @@ #ifndef _ConnectionToken_ #define _ConnectionToken_ +#include "OwnershipToken.h" namespace qpid { namespace broker { /** * An empty interface allowing opaque implementations of some * form of token to identify a connection. */ - class ConnectionToken{ + class ConnectionToken : public OwnershipToken { public: virtual ~ConnectionToken(){} }; |
