Changeset 3158 for code/branches/pch/src/orxonox/overlays/notifications
- Timestamp:
- Jun 13, 2009, 5:05:38 PM (16 years ago)
- Location:
- code/branches/pch/src/orxonox/overlays/notifications
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/overlays/notifications/Notification.cc
r3144 r3158 28 28 29 29 /** 30 @file Notification.cc30 @file 31 31 @brief Implementation of the Notification class. 32 32 */ -
code/branches/pch/src/orxonox/overlays/notifications/Notification.h
r3144 r3158 28 28 29 29 /** 30 @file Notification.h30 @file 31 31 @brief Definition of the Notification class. 32 32 */ -
code/branches/pch/src/orxonox/overlays/notifications/NotificationManager.cc
r3144 r3158 28 28 29 29 /** 30 @file NotificationManager.cc30 @file 31 31 @brief Implementation of the NotificationManager class. 32 32 */ -
code/branches/pch/src/orxonox/overlays/notifications/NotificationManager.h
r3144 r3158 28 28 29 29 /** 30 @file NotificationManager.h30 @file 31 31 @brief Definition of the NotificationManager class. 32 32 */ -
code/branches/pch/src/orxonox/overlays/notifications/NotificationOverlay.cc
r3144 r3158 28 28 29 29 /** 30 @file NotificationOverlay.cc30 @file 31 31 @brief Implementation of the NotificationOverlay class. 32 32 */ … … 127 127 Clips the input message so that it meets the requirements for the maximal length of Notifications given by the NotificationQueue. 128 128 */ 129 conststd::string NotificationOverlay::clipMessage(const std::string & message)129 std::string NotificationOverlay::clipMessage(const std::string & message) 130 130 { 131 131 if(message.length() <= (unsigned int)this->queue_->getNotificationLength()) //!< If the message is not too long. -
code/branches/pch/src/orxonox/overlays/notifications/NotificationOverlay.h
r3144 r3158 28 28 29 29 /** 30 @file NotificationOverlay.h30 @file 31 31 @brief Definition of the NotificationOverlay class. 32 32 */ … … 68 68 69 69 protected: 70 conststd::string clipMessage(const std::string & message); //!< Clips the input message if too long.70 std::string clipMessage(const std::string & message); //!< Clips the input message if too long. 71 71 72 72 private: -
code/branches/pch/src/orxonox/overlays/notifications/NotificationQueue.cc
r3144 r3158 28 28 29 29 /** 30 @file NotificationQueue.cc30 @file 31 31 @brief Implementation of the NotificationQueue class. 32 32 */ -
code/branches/pch/src/orxonox/overlays/notifications/NotificationQueue.h
r3144 r3158 28 28 29 29 /** 30 @file NotificationQueue.h30 @file 31 31 @brief Definition of the NotificationQueue class. 32 32 */
Note: See TracChangeset
for help on using the changeset viewer.