Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 31, 2008, 7:35:08 AM (16 years ago)
Author:
dafrick
Message:

Completed XMLPort for all objects.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/questsystem/src/orxonox/objects/QuestDescription.cc

    r2068 r2076  
    3939        this->initialize();
    4040    }
    41        
    42     /**
    43     @brief
    44         Constructor. Creates a new QuestDescription object and adds a title and description.
    45     @param title
    46     @param description
    47     */
    48     QuestDescription::QuestDescription(std::string title, std::string description) : BaseObject()
    49     {
    50         this->initialize();
    51         this->title_ = title;
    52         this->description_ = description;
    53     }
    5441   
    5542    QuestDescription::~QuestDescription()
     
    6552        XMLPortParam(QuestDescription, "description", setDescription, getDescription, xmlelement, mode);
    6653       
    67         COUT(1) << "QuestDescription created!" << std::endl;
     54        COUT(1) << "New QuestDescription with title '" << this->getTitle() << "' created." << std::endl;
    6855    }
    6956   
Note: See TracChangeset for help on using the changeset viewer.