Changeset 5693 for code/trunk/src/orxonox/interfaces
- Timestamp:
- Aug 29, 2009, 10:19:38 PM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 2 deleted
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/libraries (added) merged: 5612-5613,5615-5619,5621-5623,5625-5640,5642-5643,5647-5649,5665-5666,5685-5687,5692
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/interfaces/InterfaceCompilation.cc
r3327 r5693 30 30 @file 31 31 @brief 32 Compiles all the interfaces (except RadarViewable)with mostly just a constructor.32 Compiles all the interfaces in the orxonox library with mostly just a constructor. 33 33 */ 34 34 … … 38 38 #include "Rewardable.h" 39 39 #include "TeamColourable.h" 40 #include "Tickable.h" 41 #include "TimeFactorListener.h" 40 #include "NotificationListener.h" 42 41 43 42 #include "core/CoreIncludes.h" … … 81 80 82 81 //---------------------------- 83 // TimeFactorListener84 //----------------------------85 float TimeFactorListener::timefactor_s = 1.0f;86 87 TimeFactorListener::TimeFactorListener()88 {89 RegisterRootObject(TimeFactorListener);90 }91 92 //----------------------------93 // Tickable94 //----------------------------95 /**96 @brief Constructor: Registers the object in the Tickable-list97 */98 Tickable::Tickable()99 {100 RegisterRootObject(Tickable);101 }102 103 //----------------------------104 82 // Rewardable 105 83 //---------------------------- … … 108 86 RegisterObject(Rewardable); 109 87 } 88 89 //---------------------------- 90 // NotificationListener 91 //---------------------------- 92 NotificationListener::NotificationListener() 93 { 94 RegisterObject(NotificationListener); 95 } 110 96 } -
code/trunk/src/orxonox/interfaces/RadarViewable.cc
r3300 r5693 38 38 #include "objects/worldentities/WorldEntity.h" 39 39 #include "objects/Radar.h" 40 #include " overlays/map/Map.h"40 #include "Map.h" 41 41 42 42 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.