Allow to remove user-defined properties

This commit is contained in:
wmayer
2012-11-04 13:24:22 +01:00
parent 482a73b302
commit 77144681ef
9 changed files with 57 additions and 0 deletions

View File

@@ -188,6 +188,9 @@ public:
short attr=0, bool ro=false, bool hidden=false) {
return props->addDynamicProperty(type, name, group, doc, attr, ro, hidden);
}
virtual bool removeDynamicProperty(const char* name) {
return props->removeDynamicProperty(name);
}
std::vector<std::string> getDynamicPropertyNames() const {
return props->getDynamicPropertyNames();
}