Changeset 11099 for code/trunk/src/modules/notifications
- Timestamp:
- Jan 27, 2016, 6:50:51 PM (9 years ago)
- Location:
- code/trunk/src/modules/notifications
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/notifications/NotificationDispatcher.h
r11071 r11099 103 103 /** 104 104 @brief Set the NotificationDispatcher to broadcast. 105 @param broadcastWhether the NotificationDispatcher is set to broadcast or singlecast.105 @param v Whether the NotificationDispatcher is set to broadcast or singlecast. 106 106 */ 107 107 void setBroadcasting(bool v) -
code/trunk/src/modules/notifications/NotificationQueue.cc
r11071 r11099 49 49 @brief 50 50 Default constructor. Registers and initializes the object. 51 @param creator52 The creator of the NotificationQueue.53 51 */ 54 52 NotificationQueue::NotificationQueue(Context* context) : BaseObject(context), Synchronisable(context), registered_(false) … … 65 63 this->registerVariables(); 66 64 } 67 68 // TODO move to docu.69 /**70 @brief71 Constructor. Registers and initializes the object.72 @param creator73 The creator of the NotificationQueue74 @param name75 The name of the new NotificationQueue. It needs to be unique76 @param senders77 The senders that are targets of this NotificationQueue, i.e. the names of senders whose Notifications this NotificationQueue displays.78 The senders need to be seperated by commas.79 @param size80 The size (the maximum number of displayed Notifications) of this NotificationQueue.81 @param displayTime82 The time during which a Notification is (at most) displayed.83 */84 65 85 66 /**
Note: See TracChangeset
for help on using the changeset viewer.