summaryrefslogtreecommitdiff
path: root/cpp/src/qmf/Object.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qmf/Object.h')
-rw-r--r--cpp/src/qmf/Object.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/qmf/Object.h b/cpp/src/qmf/Object.h
index ded6714429..58ab12365e 100644
--- a/cpp/src/qmf/Object.h
+++ b/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;