diff options
Diffstat (limited to 'meowpp/oo/ObjProperties.h')
-rw-r--r-- | meowpp/oo/ObjProperties.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/meowpp/oo/ObjProperties.h b/meowpp/oo/ObjProperties.h index 1d1ac64..01e01d0 100644 --- a/meowpp/oo/ObjProperties.h +++ b/meowpp/oo/ObjProperties.h @@ -14,9 +14,9 @@ class ObjProperties: public ObjBase { private: public: ObjProperties(); - + ObjProperties(ObjProperties const& p); - + virtual ~ObjProperties(); size_t propertySize() const; @@ -26,27 +26,27 @@ public: void propertyClear(); ObjBase const* property(std::string name) const; - + ObjBase* property(std::string name); bool propertyAdd(std::string name, ObjBase* obj, bool autoRemove); - + bool propertyDel(std::string name); - + ObjProperties& properties() const; - + ObjProperties& properties(ObjProperties const& p); - + bool write(FILE* f, bool bin, unsigned int fg) const; - + bool read(FILE* f, bool bin, unsigned int fg); - + ObjBase* create() const; - + ObjBase* copyFrom(ObjBase const* b); - + char const* ctype() const; - + std::string type() const; }; |