Changeset 7489 for code/trunk/src/modules/notifications/NotificationQueue.h
- Timestamp:
- Sep 24, 2010, 4:01:04 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/notifications/NotificationQueue.h
r7488 r7489 43 43 #include <vector> 44 44 45 #include "NotificationManager.h" 46 45 47 #include "tools/interfaces/Tickable.h" 46 47 48 #include "interfaces/NotificationListener.h" 48 #include "NotificationManager.h"49 49 50 50 namespace orxonox // tolua_export … … 54 54 struct NotificationContainer 55 55 { 56 Notification* notification; // The Notification displayed.57 time_t time; // The time the Notification was sent and thus first displayed.56 Notification* notification; //!< The Notification displayed. 57 time_t time; //!< The time the Notification was sent and thus first displayed. 58 58 }; 59 59 … … 61 61 struct NotificationContainerCompare { 62 62 bool operator() (const NotificationContainer* const & a, const NotificationContainer* const & b) const 63 { return a->time < b->time; } // Orderedby time.63 { return a->time < b->time; } //!< Ordering by time. 64 64 }; 65 65
Note: See TracChangeset
for help on using the changeset viewer.