Changeset 7417 for code/trunk/src/modules/notifications/NotificationQueue.h
- Timestamp:
- Sep 11, 2010, 8:30:17 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/notifications/NotificationQueue.h
r7413 r7417 124 124 @return Returns a set of strings holding the different targets. 125 125 */ 126 inline const std::set<std::string , StringCompare> & getTargetsSet()126 inline const std::set<std::string> & getTargetsSet() 127 127 { return this->targets_; } 128 128 … … 144 144 bool registered_; //!< Helper variable to remember whether the NotificationQueue is registered already. 145 145 146 std::set<std::string , StringCompare> targets_; //!< The targets the NotificationQueue displays Notifications of.146 std::set<std::string> targets_; //!< The targets the NotificationQueue displays Notifications of. 147 147 148 148 std::multiset<NotificationContainer*, NotificationContainerCompare> ordering_; //!< The NotificationContainers ordered by the time they were registered.
Note: See TracChangeset
for help on using the changeset viewer.