Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 12, 2008, 1:29:33 PM (15 years ago)
Author:
dafrick
Message:

Just changed some small stuff…

File:
1 edited

Legend:

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

    r2159 r2191  
    6060            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a QuestDescription object through XML.
    6161
    62             inline const std::string & getTitle(void) const //!< Returns the title.
     62            /**
     63            @brief Returns the title.
     64            @return Returns a string containing the title of the QuestDescription.
     65            */
     66            inline const std::string & getTitle(void) const
    6367                { return this->title_; }
    64             inline const std::string & getDescription(void) const //!< Returns the description text.
     68           
     69            /**
     70            @brief Returns the description text.
     71            @return Returns a string containing the description text of the QuestDescription.
     72            */
     73            inline const std::string & getDescription(void) const
    6574                { return this->description_; }
    6675
     
    6978            std::string description_; //!< The description.
    7079
    71             inline void setTitle(const std::string & title) //!< Sets the title.
     80            /**
     81            @brief Sets the title.
     82            @param title The title to be set.
     83            */
     84            inline void setTitle(const std::string & title)
    7285                { this->title_ = title; }
    73             inline void setDescription(const std::string & description) //!< Sets the description text.
     86               
     87            /**
     88            @brief Sets the description text.
     89            @param description The description text to be set.
     90            */
     91            inline void setDescription(const std::string & description)
    7492                { this->description_ = description; }
    7593
Note: See TracChangeset for help on using the changeset viewer.