summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2013-06-19 17:26:55 +0000
committerAndrew Stitcher <astitcher@apache.org>2013-06-19 17:26:55 +0000
commit25d4cd64c85b6e04d73f320ba131145fc644e10d (patch)
tree137ab878d2777b1fe555bdeba87936c85e6922e8 /qpid/cpp/src
parent7e5ceaf484253d00e17cb8579e802f12c1d06236 (diff)
downloadqpid-python-25d4cd64c85b6e04d73f320ba131145fc644e10d.tar.gz
QPID-4905: Add needed virtual destructor missed earlier
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1494700 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/broker/ConnectionIdentity.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/broker/ConnectionIdentity.h b/qpid/cpp/src/qpid/broker/ConnectionIdentity.h
index fdd8d36842..4e28ca11e3 100644
--- a/qpid/cpp/src/qpid/broker/ConnectionIdentity.h
+++ b/qpid/cpp/src/qpid/broker/ConnectionIdentity.h
@@ -37,6 +37,9 @@ class OwnershipToken;
// Interface used to hold Connection authentication and object details for use when authenticating
// publihed management requests.
class ConnectionIdentity {
+protected:
+ virtual ~ConnectionIdentity() {}
+
public:
virtual const OwnershipToken* getOwnership() const = 0;
virtual const management::ObjectId getObjectId() const = 0;