summaryrefslogtreecommitdiff
path: root/cpp
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
commit3ad9bfa66c4389c7629d757ecd6d63f28945aaa1 (patch)
tree042d5f703e1e6acdec2da763655803431b3ecfc3 /cpp
parent9aa269b41af1b393043232cb2f4a5ac6b3052a5c (diff)
downloadqpid-python-3ad9bfa66c4389c7629d757ecd6d63f28945aaa1.tar.gz
QPID-4905: Add needed virtual destructor missed earlier
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1494700 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/qpid/broker/ConnectionIdentity.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/qpid/broker/ConnectionIdentity.h b/cpp/src/qpid/broker/ConnectionIdentity.h
index fdd8d36842..4e28ca11e3 100644
--- a/cpp/src/qpid/broker/ConnectionIdentity.h
+++ b/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;