Changeset 3158 for code/branches/pch/src/orxonox/overlays
- Timestamp:
- Jun 13, 2009, 5:05:38 PM (16 years ago)
- Location:
- code/branches/pch/src/orxonox/overlays
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/overlays/hud/AnnounceMessage.h
r3144 r3158 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include <string>35 34 #include "objects/GametypeMessageListener.h" 36 35 #include "overlays/FadeoutText.h" -
code/branches/pch/src/orxonox/overlays/hud/ChatOverlay.cc
r3144 r3158 29 29 #include "ChatOverlay.h" 30 30 31 #include <string> 31 32 #include <OgreTextAreaOverlayElement.h> 32 33 -
code/branches/pch/src/orxonox/overlays/hud/ChatOverlay.h
r3144 r3158 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include <string>35 34 #include <list> 36 35 #include <OgreUTFString.h> -
code/branches/pch/src/orxonox/overlays/hud/DeathMessage.h
r3144 r3158 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include <string>35 34 #include "objects/GametypeMessageListener.h" 36 35 #include "overlays/FadeoutText.h" -
code/branches/pch/src/orxonox/overlays/hud/HUDNavigation.cc
r3144 r3158 29 29 #include "HUDNavigation.h" 30 30 31 #include <string> 31 32 #include <OgreOverlayManager.h> 32 33 #include <OgreTextAreaOverlayElement.h> -
code/branches/pch/src/orxonox/overlays/hud/HUDNavigation.h
r3144 r3158 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include <string>35 34 #include <OgrePrerequisites.h> 36 35 #include "objects/Tickable.h" -
code/branches/pch/src/orxonox/overlays/hud/KillMessage.h
r3144 r3158 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include <string>35 34 #include "objects/GametypeMessageListener.h" 36 35 #include "overlays/FadeoutText.h" -
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 */ -
code/branches/pch/src/orxonox/overlays/stats/CreateLines.h
r3140 r3158 29 29 30 30 #include "OrxonoxPrereqs.h" 31 #include <string>32 31 33 32 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.