Changeset 8140
- Timestamp:
- Mar 28, 2011, 3:24:12 PM (14 years ago)
- Location:
- code/branches/dockingsystem/src/modules/docking
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/dockingsystem/src/modules/docking/Dock.cc
r8137 r8140 34 34 #include "Dock.h" 35 35 36 #include "core/CoreIncludes.h"37 #include "core/XMLPort.h"38 39 36 40 37 namespace orxonox … … 47 44 { 48 45 RegisterObject(Dock); 49 COUT(0) << "Registering dock..." << endl;46 COUT(0) << "Registering dock..." << std::endl; 50 47 } 51 48 … … 75 72 bool Dock::execute(bool bTriggered, BaseObject* trigger) 76 73 { 77 COUT(0) << "Dock executed (bTriggered = " << (bTriggered? "true":"false") << ").." << endl; 74 COUT(0) << "Dock executed (bTriggered = " << (bTriggered? "true":"false") << ").." << std::endl; 75 return true; 78 76 } 79 77 -
code/branches/dockingsystem/src/modules/docking/Dock.h
r8137 r8140 36 36 #define _Dock_H__ 37 37 38 #include "core/CoreIncludes.h" 39 #include "core/XMLPort.h" 40 #include "core/EventIncludes.h" 41 42 #include "worldentities/StaticEntity.h" 38 43 #include "DockingPrereqs.h" 39 44 … … 50 55 51 56 bool execute(bool bTriggered, BaseObject* trigger); 52 } 57 }; 53 58 54 59 -
code/branches/dockingsystem/src/modules/docking/DockingPrereqs.h
r8137 r8140 65 65 namespace orxonox 66 66 { 67 class Notification; 68 class NotificationDispatcher; 69 class NotificationManager; 70 class NotificationQueue; 71 72 //dispatchers 73 class CommandNotification; 74 class SimpleNotification; 67 class Dock; 75 68 } 76 69
Note: See TracChangeset
for help on using the changeset viewer.