- Timestamp:
- Aug 9, 2013, 9:26:46 PM (11 years ago)
- Location:
- code/branches/core6/src/modules/notifications/dispatchers
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/modules/notifications/dispatchers/CommandNotification.cc
r9550 r9629 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/branches/core6/src/modules/notifications/dispatchers/CommandNotification.h
r7552 r9629 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/branches/core6/src/modules/notifications/dispatchers/SimpleNotification.cc
r8706 r9629 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/branches/core6/src/modules/notifications/dispatchers/SimpleNotification.h
r7552 r9629 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.