summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qmf/Object.h
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/cpp/src/qmf/Object.h')
-rw-r--r--qpid/cpp/src/qmf/Object.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/cpp/src/qmf/Object.h b/qpid/cpp/src/qmf/Object.h
index eb92cbbe45..9cb3224d9b 100644
--- a/qpid/cpp/src/qmf/Object.h
+++ b/qpid/cpp/src/qmf/Object.h
@@ -31,13 +31,14 @@ namespace qmf {
public:
Object(const SchemaObjectClass* type);
Object(ObjectImpl* impl);
+ Object(const Object& from);
virtual ~Object();
void destroy();
const ObjectId* getObjectId() const;
void setObjectId(ObjectId* oid);
const SchemaObjectClass* getClass() const;
- Value* getValue(char* key);
+ Value* getValue(char* key) const;
ObjectImpl* impl;
};