diff options
| author | Ted Ross <tross@apache.org> | 2009-10-02 21:43:22 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2009-10-02 21:43:22 +0000 |
| commit | 2df0b393db42d098f590f6b00fb96b0c15b1f6f9 (patch) | |
| tree | c6e271c2cf17df3e3661d871856edca0e213b0aa /qpid/cpp/src/qmf/engine/ObjectIdImpl.cpp | |
| parent | 0f7c02dae11afed532bf60302cf2185f422fd23c (diff) | |
| download | qpid-python-2df0b393db42d098f590f6b00fb96b0c15b1f6f9.tar.gz | |
QMF Fixes in Ruby Console:
- AgentProxy object now has broker_bank and agent_bank accessors
- Fixed a bug in the returning og reference values (ObjectId)
- Added package_name accessor to SchemaObjectClass
- Added accessors for agent/broker bank to ObjectId
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@821181 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qmf/engine/ObjectIdImpl.cpp')
| -rw-r--r-- | qpid/cpp/src/qmf/engine/ObjectIdImpl.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qpid/cpp/src/qmf/engine/ObjectIdImpl.cpp b/qpid/cpp/src/qmf/engine/ObjectIdImpl.cpp index 5b925045bf..b08ae2756c 100644 --- a/qpid/cpp/src/qmf/engine/ObjectIdImpl.cpp +++ b/qpid/cpp/src/qmf/engine/ObjectIdImpl.cpp @@ -156,6 +156,10 @@ uint32_t ObjectId::getObjectNumHi() const { return impl->getObjectNumHi(); } uint32_t ObjectId::getObjectNumLo() const { return impl->getObjectNumLo(); } bool ObjectId::isDurable() const { return impl->isDurable(); } const char* ObjectId::str() const { return impl->asString().c_str(); } +uint8_t ObjectId::getFlags() const { return impl->getFlags(); } +uint16_t ObjectId::getSequence() const { return impl->getSequence(); } +uint32_t ObjectId::getBrokerBank() const { return impl->getBrokerBank(); } +uint32_t ObjectId::getAgentBank() const { return impl->getAgentBank(); } bool ObjectId::operator==(const ObjectId& other) const { return *impl == *other.impl; } bool ObjectId::operator<(const ObjectId& other) const { return *impl < *other.impl; } bool ObjectId::operator>(const ObjectId& other) const { return *impl > *other.impl; } |
