diff options
| author | Gordon Sim <gsim@apache.org> | 2011-01-17 10:24:35 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2011-01-17 10:24:35 +0000 |
| commit | 721229fd334269ed733ccf76cf93ff0e95882514 (patch) | |
| tree | 1392b9f50dc046310e18e8db85c371867af69d4a /cpp/include | |
| parent | 0861114538486154287d8a048f1eff2036e9b5db (diff) | |
| download | qpid-python-721229fd334269ed733ccf76cf93ff0e95882514.tar.gz | |
QPID-3001: Add const version of Connection::isOpen()
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1059846 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include')
| -rw-r--r-- | cpp/include/qpid/messaging/Connection.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/include/qpid/messaging/Connection.h b/cpp/include/qpid/messaging/Connection.h index 59f5616a2f..1ad7a7242f 100644 --- a/cpp/include/qpid/messaging/Connection.h +++ b/cpp/include/qpid/messaging/Connection.h @@ -90,6 +90,7 @@ class Connection : public qpid::messaging::Handle<ConnectionImpl> QPID_MESSAGING_EXTERN void setOption(const std::string& name, const qpid::types::Variant& value); QPID_MESSAGING_EXTERN void open(); QPID_MESSAGING_EXTERN bool isOpen(); + QPID_MESSAGING_EXTERN bool isOpen() const; /** * Closes a connection and all sessions associated with it. An * opened connection must be closed before the last handle is |
