- Timestamp:
- Oct 4, 2009, 12:02:28 AM (15 years ago)
- Location:
- code/branches/core5/src/modules/questsystem/notifications
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/modules/questsystem/notifications/NotificationManager.cc
r5760 r5867 37 37 38 38 #include "core/CoreIncludes.h" 39 #include "core/ScopedSingletonManager.h" 39 40 #include "Notification.h" 40 41 #include "interfaces/NotificationListener.h" … … 47 48 48 49 NotificationManager* NotificationManager::singletonPtr_s = NULL; 50 ManageScopedSingleton(NotificationManager, ScopeID::Root); 49 51 50 52 /** -
code/branches/core5/src/modules/questsystem/notifications/NotificationManager.h
r5850 r5867 41 41 #include <string> 42 42 43 #include "util/S copedSingleton.h"43 #include "util/Singleton.h" 44 44 #include "core/OrxonoxClass.h" 45 45 … … 53 53 Damian 'Mozork' Frick 54 54 */ 55 class _QuestsystemExport NotificationManager : public S copedSingleton<NotificationManager, ScopeID::Root>, public OrxonoxClass55 class _QuestsystemExport NotificationManager : public Singleton<NotificationManager>, public OrxonoxClass 56 56 { 57 friend class S copedSingleton<NotificationManager, ScopeID::Root>;57 friend class Singleton<NotificationManager>; 58 58 public: 59 59 NotificationManager();
Note: See TracChangeset
for help on using the changeset viewer.