Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 23, 2009, 10:05:58 PM (15 years ago)
Author:
landauf
Message:

replaced tabs with spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/overlays/notifications/Notification.h

    r2911 r3034  
    5656            Notification(const std::string & message);
    5757            virtual ~Notification();
    58            
     58
    5959            bool send(void); //!< Sends the Notification to the Notificationmanager, with sender NotificationManager::NONE;
    6060            bool send(const std::string & sender); //!< Sends the Notification to the Notificationmanager.
    61            
     61
    6262            /**
    6363            @brief Checks whether the Notification was sent.
     
    7272            inline const std::string & getMessage(void) const
    7373                { return this->message_; }
    74                
     74
    7575            inline const std::string & getSender(void) const
    7676                { return this->sender_; }
    77            
     77
    7878            bool setMessage(const std::string & message); //!< Sets the message of the notification.
    79            
     79
    8080        private:
    8181            std::string message_; //!< The Notification message.
    8282            std::string sender_; //!< The sender of the notification.
    8383            bool sent_; //!< Whether Notification has been sent, if so it cannot be changed.
    84            
     84
    8585            void initialize(void);
    86        
     86
    8787    };
    8888
Note: See TracChangeset for help on using the changeset viewer.