Changeset 9667 for code/trunk/src/modules/notifications
- Timestamp:
- Aug 25, 2013, 9:08:42 PM (12 years ago)
- Location:
- code/trunk
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk ¶
- Property svn:mergeinfo changed
/code/branches/core6 merged: 9552-9554,9556-9574,9577-9579,9585-9593,9596-9612,9626-9662
- Property svn:mergeinfo changed
-
TabularUnified code/trunk/src/modules/notifications/NotificationDispatcher.cc ¶
r8891 r9667 48 48 { 49 49 50 CreateUnloadableFactory(NotificationDispatcher);50 RegisterUnloadableClass(NotificationDispatcher); 51 51 52 52 registerMemberNetworkFunction(NotificationDispatcher, broadcastHelper); … … 57 57 Default constructor. Initializes the object. 58 58 */ 59 NotificationDispatcher::NotificationDispatcher( BaseObject* creator) : BaseObject(creator), Synchronisable(creator)59 NotificationDispatcher::NotificationDispatcher(Context* context) : BaseObject(context), Synchronisable(context) 60 60 { 61 61 RegisterObject(NotificationDispatcher); -
TabularUnified code/trunk/src/modules/notifications/NotificationDispatcher.h ¶
r8891 r9667 76 76 { 77 77 public: 78 NotificationDispatcher( BaseObject* creator); //!< Default constructor. Initializes the object.78 NotificationDispatcher(Context* context); //!< Default constructor. Initializes the object. 79 79 virtual ~NotificationDispatcher(); //!< Destructor. 80 80 -
TabularUnified code/trunk/src/modules/notifications/NotificationManager.cc ¶
r8858 r9667 55 55 NotificationManager::NotificationManager() 56 56 { 57 Register RootObject(NotificationManager);57 RegisterObject(NotificationManager); 58 58 59 59 orxout(internal_info, context::notifications) << "NotificatioManager created." << endl; -
TabularUnified code/trunk/src/modules/notifications/NotificationManager.h ¶
r8706 r9667 42 42 #include <string> 43 43 44 #include "core/OrxonoxClass.h"45 44 #include "util/Singleton.h" 46 45 #include "interfaces/NotificationListener.h" -
TabularUnified code/trunk/src/modules/notifications/NotificationQueue.cc ¶
r9253 r9667 44 44 { 45 45 46 CreateFactory(NotificationQueue);46 RegisterClass(NotificationQueue); 47 47 48 48 /** … … 52 52 The creator of the NotificationQueue. 53 53 */ 54 NotificationQueue::NotificationQueue( BaseObject* creator) : BaseObject(creator), Synchronisable(creator), registered_(false)54 NotificationQueue::NotificationQueue(Context* context) : BaseObject(context), Synchronisable(context), registered_(false) 55 55 { 56 56 RegisterObject(NotificationQueue); -
TabularUnified code/trunk/src/modules/notifications/NotificationQueue.h ¶
r8706 r9667 94 94 95 95 public: 96 NotificationQueue( BaseObject* creator);96 NotificationQueue(Context* context); 97 97 virtual ~NotificationQueue(); 98 98 -
TabularUnified code/trunk/src/modules/notifications/NotificationQueueCEGUI.cc ¶
r8858 r9667 46 46 { 47 47 48 CreateFactory(NotificationQueueCEGUI);48 RegisterClass(NotificationQueueCEGUI); 49 49 50 50 /*static*/ const std::string NotificationQueueCEGUI::NOTIFICATION_LAYER("NotificationLayer"); 51 51 52 NotificationQueueCEGUI::NotificationQueueCEGUI( BaseObject* creator) : NotificationQueue(creator)52 NotificationQueueCEGUI::NotificationQueueCEGUI(Context* context) : NotificationQueue(context) 53 53 { 54 54 RegisterObject(NotificationQueueCEGUI); -
TabularUnified code/trunk/src/modules/notifications/NotificationQueueCEGUI.h ¶
r8706 r9667 70 70 71 71 public: 72 NotificationQueueCEGUI( BaseObject* creator);72 NotificationQueueCEGUI(Context* context); 73 73 virtual ~NotificationQueueCEGUI(); 74 74 -
TabularUnified code/trunk/src/modules/notifications/dispatchers/CommandNotification.cc ¶
r9550 r9667 44 44 namespace orxonox { 45 45 46 CreateFactory(CommandNotification);46 RegisterClass(CommandNotification); 47 47 48 48 /** … … 50 50 Default Constructor. Registers the object and initializes variables. 51 51 */ 52 CommandNotification::CommandNotification( BaseObject* creator) : NotificationDispatcher(creator)52 CommandNotification::CommandNotification(Context* context) : NotificationDispatcher(context) 53 53 { 54 54 RegisterObject(CommandNotification); -
TabularUnified code/trunk/src/modules/notifications/dispatchers/CommandNotification.h ¶
r7552 r9667 70 70 71 71 public: 72 CommandNotification( BaseObject* creator); //!< Default Constructor.72 CommandNotification(Context* context); //!< Default Constructor. 73 73 virtual ~CommandNotification(); //!< Destructor. 74 74 -
TabularUnified code/trunk/src/modules/notifications/dispatchers/SimpleNotification.cc ¶
r8706 r9667 39 39 namespace orxonox { 40 40 41 CreateFactory(SimpleNotification);41 RegisterClass(SimpleNotification); 42 42 43 43 /** … … 45 45 Default Constructor. Registers the object and initializes variables. 46 46 */ 47 SimpleNotification::SimpleNotification( BaseObject* creator) : NotificationDispatcher(creator)47 SimpleNotification::SimpleNotification(Context* context) : NotificationDispatcher(context) 48 48 { 49 49 RegisterObject(SimpleNotification); -
TabularUnified code/trunk/src/modules/notifications/dispatchers/SimpleNotification.h ¶
r7552 r9667 67 67 { 68 68 public: 69 SimpleNotification( BaseObject* creator); //!< Default Constructor.69 SimpleNotification(Context* context); //!< Default Constructor. 70 70 virtual ~SimpleNotification(); //!< Destructor. 71 71
Note: See TracChangeset
for help on using the changeset viewer.