diff options
author | Carl C. Trieloff <cctrieloff@apache.org> | 2007-09-08 00:14:24 +0000 |
---|---|---|
committer | Carl C. Trieloff <cctrieloff@apache.org> | 2007-09-08 00:14:24 +0000 |
commit | 783b718d0b270121cd2e597424d0c81adea77a38 (patch) | |
tree | 22dbaa86d0ca3387ddc63ddc32c6f77a214ba386 /cpp/src/qpid/broker/PersistableQueue.h | |
parent | cef8cb403ef217ed797c261933ed8e89b174ea60 (diff) | |
download | qpid-python-783b718d0b270121cd2e597424d0c81adea77a38.tar.gz |
updates to be able to manage lifecycle of async store
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@573762 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/PersistableQueue.h')
-rw-r--r-- | cpp/src/qpid/broker/PersistableQueue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/PersistableQueue.h b/cpp/src/qpid/broker/PersistableQueue.h index f98bf7e871..8df3547f30 100644 --- a/cpp/src/qpid/broker/PersistableQueue.h +++ b/cpp/src/qpid/broker/PersistableQueue.h @@ -56,7 +56,7 @@ public: }; inline void setExternalQueueStore(ExternalQueueStore* inst) {externalQueueStore = inst;}; - inline ExternalQueueStore* getExternalQueueStore() {return externalQueueStore;}; + inline ExternalQueueStore* getExternalQueueStore() const {return externalQueueStore;}; PersistableQueue():externalQueueStore(NULL){ }; |