Changeset 10817 for code/branches/cpp11_v2/src/libraries/core/class
- Timestamp:
- Nov 19, 2015, 11:40:28 AM (9 years ago)
- Location:
- code/branches/cpp11_v2/src/libraries/core/class
- Files:
-
- 2 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(); -
code/branches/cpp11_v2/src/libraries/core/class/Super.h
r10768 r10817 584 584 // Creates the super-function-callers by calling the first SuperFunctionCondition check 585 585 // This get's called within the initialization of an Identifier 586 virtual void createSuperFunctionCaller() const 586 virtual void createSuperFunctionCaller() const override 587 587 { 588 588 SuperFunctionCondition<0, T, 0, 0>::superCheck();
Note: See TracChangeset
for help on using the changeset viewer.