diff options
Diffstat (limited to 'qpid/cpp/src/qmf/Object.h')
-rw-r--r-- | qpid/cpp/src/qmf/Object.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qpid/cpp/src/qmf/Object.h b/qpid/cpp/src/qmf/Object.h index ded6714429..58ab12365e 100644 --- a/qpid/cpp/src/qmf/Object.h +++ b/qpid/cpp/src/qmf/Object.h @@ -37,8 +37,10 @@ namespace qmf { const ObjectId* getObjectId() const; void setObjectId(ObjectId* oid); const SchemaObjectClass* getClass() const; - Value* getValue(char* key) const; + Value* getValue(const char* key) const; void invokeMethod(const char* methodName, const Value* inArgs, void* context) const; + bool isDeleted() const; + void merge(const Object& from); private: friend class ObjectImpl; |