- Timestamp:
- May 10, 2011, 11:37:22 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/tutoriallevel2/src/modules/notifications/NotificationQueue.cc
r8374 r8445 56 56 @param senders 57 57 The senders that are targets of this NotificationQueue, i.e. the names of senders whose Notifications this NotificationQueue displays. 58 The senders need to be sep erated by commas.58 The senders need to be separated by commas. 59 59 @param size 60 60 The size (the maximum number of displayed Notifications) of this NotificationQueue. … … 304 304 Clears the NotificationQueue by removing all NotificationContainers. 305 305 @param noGraphics 306 If this is eset to true the GUI is not informed of the clearing of the NotificationQueue. This is needed only internally.306 If this is set to true the GUI is not informed of the clearing of the NotificationQueue. This is needed only internally. 307 307 */ 308 308 void NotificationQueue::clear(bool noGraphics) … … 369 369 /** 370 370 @brief 371 Produces all targets of the NotificationQueue concat inated as string, with commas (',') as seperators.371 Produces all targets of the NotificationQueue concatenated as string, with commas (',') as separators. 372 372 @return 373 373 Returns the targets as a string. … … 395 395 The targets are the senders whose Notifications are displayed in this queue. 396 396 @param targets 397 Accepts a string of targets, each sep erated by commas (','), spaces are ignored.397 Accepts a string of targets, each separated by commas (','), spaces are ignored. 398 398 */ 399 399 void NotificationQueue::setTargets(const std::string & targets) … … 412 412 } 413 413 } 414 415 void NotificationQueue::tidy(void) 416 { 417 while(this->size_ > 0) 418 this->pop(); 419 } 414 420 415 421 }
Note: See TracChangeset
for help on using the changeset viewer.