Changeset 5633 for code/branches/libraries/src/orxonox/tools/interfaces
- Timestamp:
- Aug 12, 2009, 1:32:30 AM (15 years ago)
- Location:
- code/branches/libraries/src/orxonox/tools/interfaces
- Files:
-
- 2 added
- 1 copied
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/libraries/src/orxonox/tools/interfaces/ToolsInterfaceCompilation.cc
r5628 r5633 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 tools library with mostly just a constructor. 33 33 */ 34 34 35 #include "GametypeMessageListener.h"36 #include "PawnListener.h"37 #include "RadarListener.h"38 #include "Rewardable.h"39 #include "TeamColourable.h"40 35 #include "Tickable.h" 41 36 #include "TimeFactorListener.h" 42 #include "NotificationListener.h"43 37 44 38 #include "core/CoreIncludes.h" … … 46 40 namespace orxonox 47 41 { 48 //----------------------------49 // GametypeMessageListener50 //----------------------------51 GametypeMessageListener::GametypeMessageListener()52 {53 RegisterRootObject(GametypeMessageListener);54 }55 56 //----------------------------57 // PawnListener58 //----------------------------59 /**60 @brief Constructor for the PawnListener.61 */62 PawnListener::PawnListener()63 {64 RegisterRootObject(PawnListener);65 }66 67 //----------------------------68 // RadarListener69 //----------------------------70 RadarListener::RadarListener()71 {72 RegisterRootObject(RadarListener);73 }74 75 //----------------------------76 // TeamColourable77 //----------------------------78 TeamColourable::TeamColourable()79 {80 RegisterRootObject(TeamColourable);81 }82 83 42 //---------------------------- 84 43 // TimeFactorListener … … 101 60 RegisterRootObject(Tickable); 102 61 } 103 104 //----------------------------105 // Rewardable106 //----------------------------107 Rewardable::Rewardable()108 {109 RegisterObject(Rewardable);110 }111 112 //----------------------------113 // NotificationListener114 //----------------------------115 NotificationListener::NotificationListener()116 {117 RegisterObject(NotificationListener);118 }119 62 }
Note: See TracChangeset
for help on using the changeset viewer.