- Timestamp:
- May 11, 2011, 10:45:56 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/tutoriallevel2/src/modules/notifications/NotificationQueue.h
r8446 r8448 142 142 const std::string& getTargets(void) const; //!< Returns a string consisting of the concatenation of the targets. 143 143 144 void tidy(void);144 bool tidy(void); // Pops all Notifications from the NotificationQueue. 145 145 146 146 protected: 147 static const unsigned int DEFAULT_SIZE = 5; //!< The default maximum number of Notifications displayed.148 static const unsigned int DEFAULT_DISPLAY_TIME = 30; //!< The default display time.149 static const int INF = -1; //!< Constant denoting infinity.150 151 147 /** 152 148 @brief Is called when a notification was pushed. … … 166 162 virtual void clear(bool noGraphics = false); //!< Clears the NotificationQueue by removing all NotificationContainers. 167 163 164 protected: 165 static const unsigned int DEFAULT_SIZE = 5; //!< The default maximum number of Notifications displayed. 166 static const unsigned int DEFAULT_DISPLAY_TIME = 30; //!< The default display time. 167 static const int INF = -1; //!< Constant denoting infinity. 168 168 169 169 private:
Note: See TracChangeset
for help on using the changeset viewer.