Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 1, 2008, 9:03:51 PM (16 years ago)
Author:
landauf
Message:

converted tabs to spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/objects/quest/QuestDescription.h

    r2092 r2093  
    4646    class QuestDescription : public BaseObject {
    4747
    48         public:
     48        public:
    4949            QuestDescription(BaseObject* creator);
    50             virtual ~QuestDescription();
     50            virtual ~QuestDescription();
    5151
    52             virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
     52            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
    5353
    54             inline const std::string & getTitle(void) const //!< Returns the title.
     54            inline const std::string & getTitle(void) const //!< Returns the title.
    5555                { return this->title_; }
    56             inline const std::string & getDescription(void) const //!< Returns the description text.
     56            inline const std::string & getDescription(void) const //!< Returns the description text.
    5757                { return this->description_; }
    5858
    59         private:
     59        private:
    6060            void initialize(void);
    6161
    6262            inline void setTitle(const std::string & title) //!< Sets the title.
    6363                { this->title_ = title; }
    64             inline void setDescription(const std::string & description) //!< Sets the description text.
     64            inline void setDescription(const std::string & description) //!< Sets the description text.
    6565                { this->description_ = description; }
    6666
Note: See TracChangeset for help on using the changeset viewer.