- Timestamp:
- Nov 19, 2015, 11:40:28 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/class/Identifier.h
r10774 r10817 289 289 bool initializeObject(T* object); 290 290 291 virtual void updateConfigValues(bool updateChildren = true) const ;292 293 virtual const std::type_info& getTypeInfo() 291 virtual void updateConfigValues(bool updateChildren = true) const override; 292 293 virtual const std::type_info& getTypeInfo() override 294 294 { return typeid(T); } 295 295 296 virtual bool canDynamicCastObjectToIdentifierClass(Identifiable* object) const 296 virtual bool canDynamicCastObjectToIdentifierClass(Identifiable* object) const override 297 297 { return dynamic_cast<T*>(object) != nullptr; } 298 298 299 virtual void destroyObjects() ;299 virtual void destroyObjects() override; 300 300 301 301 static ClassIdentifier<T>* getIdentifier();
Note: See TracChangeset
for help on using the changeset viewer.