- Timestamp:
- Aug 14, 2009, 3:07:59 AM (16 years ago)
- Location:
- code/branches/libraries/src/orxonox/objects/quest/notifications
- Files:
-
- 3 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
code/branches/libraries/src/orxonox/objects/quest/notifications/CMakeLists.txt
r5635 r5648 1 ADD_SOURCE_FILES( ORXONOX_SRC_FILES1 ADD_SOURCE_FILES(QUEST_SRC_FILES 2 2 Notification.cc 3 3 NotificationManager.cc 4 NotificationOverlay.cc 5 NotificationQueue.cc 4 6 ) -
code/branches/libraries/src/orxonox/objects/quest/notifications/Notification.h
r5619 r5648 35 35 #define _Notification_H__ 36 36 37 #include " OrxonoxPrereqs.h"37 #include "objects/quest/QuestPrereqs.h" 38 38 39 39 #include <string> … … 49 49 Damian 'Mozork' Frick 50 50 */ 51 class _ OrxonoxExport Notification : public BaseObject51 class _QuestExport Notification : public BaseObject 52 52 { 53 53 public: -
code/branches/libraries/src/orxonox/objects/quest/notifications/NotificationManager.h
r5619 r5648 35 35 #define _NotificationManager_H__ 36 36 37 #include " OrxonoxPrereqs.h"37 #include "objects/quest/QuestPrereqs.h" 38 38 39 39 #include <ctime> … … 41 41 #include <string> 42 42 43 #include "util/S ingleton.h"43 #include "util/ScopedSingleton.h" 44 44 #include "core/OrxonoxClass.h" 45 45 … … 54 54 Damian 'Mozork' Frick 55 55 */ 56 class _ OrxonoxExport NotificationManager : public Singleton<NotificationManager>, public OrxonoxClass56 class _QuestExport NotificationManager : public ScopedSingleton<NotificationManager, ScopeID::GSLevel>, public OrxonoxClass 57 57 { 58 friend class S ingleton<NotificationManager>;58 friend class ScopedSingleton<NotificationManager, ScopeID::GSLevel>; 59 59 public: 60 60 NotificationManager(); -
code/branches/libraries/src/orxonox/objects/quest/notifications/NotificationOverlay.h
r5646 r5648 36 36 #define _NotificationOverlay_H__ 37 37 38 #include "o verlays/OverlaysPrereqs.h"38 #include "objects/quest/QuestPrereqs.h" 39 39 40 40 #include <string> … … 50 50 Damian 'Mozork' Frick 51 51 */ 52 class _ OverlaysExport NotificationOverlay : public OverlayText52 class _QuestExport NotificationOverlay : public OverlayText 53 53 { 54 54 -
code/branches/libraries/src/orxonox/objects/quest/notifications/NotificationQueue.h
r5646 r5648 35 35 #define _NotificationOueue_H__ 36 36 37 #include "o verlays/OverlaysPrereqs.h"37 #include "objects/quest/QuestPrereqs.h" 38 38 39 39 #include <ctime> … … 85 85 */ 86 86 87 class _ OverlaysExport NotificationQueue : public OverlayGroup, public Tickable, public NotificationListener87 class _QuestExport NotificationQueue : public OverlayGroup, public Tickable, public NotificationListener 88 88 { 89 89
Note: See TracChangeset
for help on using the changeset viewer.