Changeset 9667 for code/trunk/src/modules/notifications/dispatchers
- Timestamp:
- Aug 25, 2013, 9:08:42 PM (11 years ago)
- Location:
- code/trunk
- Files:
-
- 5 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
-
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); -
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 -
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); -
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.