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/include/qmf | |
| 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/include/qmf')
| -rw-r--r-- | qpid/cpp/include/qmf/engine/Console.h | 2 | ||||
| -rw-r--r-- | qpid/cpp/include/qmf/engine/ObjectId.h | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/qpid/cpp/include/qmf/engine/Console.h b/qpid/cpp/include/qmf/engine/Console.h index f53f351760..ce72360da7 100644 --- a/qpid/cpp/include/qmf/engine/Console.h +++ b/qpid/cpp/include/qmf/engine/Console.h @@ -136,6 +136,8 @@ namespace engine { public: ~AgentProxy(); const char* getLabel() const; + uint32_t getBrokerBank() const; + uint32_t getAgentBank() const; private: friend struct StaticContext; diff --git a/qpid/cpp/include/qmf/engine/ObjectId.h b/qpid/cpp/include/qmf/engine/ObjectId.h index b71473a799..2055972c00 100644 --- a/qpid/cpp/include/qmf/engine/ObjectId.h +++ b/qpid/cpp/include/qmf/engine/ObjectId.h @@ -39,6 +39,10 @@ namespace engine { uint32_t getObjectNumLo() const; bool isDurable() const; const char* str() const; + uint8_t getFlags() const; + uint16_t getSequence() const; + uint32_t getBrokerBank() const; + uint32_t getAgentBank() const; bool operator==(const ObjectId& other) const; bool operator<(const ObjectId& other) const; |
