Allow to remove user-defined properties

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

View File

@@ -100,6 +100,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();
}