Changeset 9279 for code/branches/presentation2012merge/src/libraries/core
- Timestamp:
- Jun 4, 2012, 10:50:28 PM (13 years ago)
- Location:
- code/branches/presentation2012merge/src/libraries/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2012merge/src/libraries/core/Super.h
r8866 r9279 398 398 inline void operator()( SUPER_CALL_ARGUMENTS##hasarguments(__VA_ARGS__) ) \ 399 399 { \ 400 ( dynamic_cast<T*>(object))->T:: functionname400 (orxonox_cast<T*>(object))->T:: functionname 401 401 402 402 /* … … 508 508 inline void operator()( SUPER_CALL_ARGUMENTS##hasarguments(__VA_ARGS__) ) 509 509 { 510 ( dynamic_cast<T*>(object))->T:: functionname ( Call the function with it's arguments );510 (orxonox_cast<T*>(object))->T:: functionname ( Call the function with it's arguments ); 511 511 } 512 512 -
code/branches/presentation2012merge/src/libraries/core/XMLPort.h
r8858 r9279 197 197 ClassIdentifier<classname>::getIdentifier()->addXMLPortParamContainer(paramname, containername); \ 198 198 } \ 199 containername->port( dynamic_cast<BaseObject*>(this), object, xmlelement, mode)199 containername->port(orxonox_cast<BaseObject*>(this), object, xmlelement, mode) 200 200 201 201 // --------------------
Note: See TracChangeset
for help on using the changeset viewer.