Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Completed XMLPort for all objects.

File:
1 edited

Legend:

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

    r2068 r2076  
    4444        this->initialize();
    4545    }
    46 
    47     /**
    48     @brief
    49         Constructor.
    50     @param id
    51         The unique identifier.
    52     @param title
    53         The title of the quest.
    54     @param description
    55         The description of the quest.
    56     */
    57     GlobalQuest::GlobalQuest(std::string id) : Quest(id)
    58     {
    59         this->initialize();
    60     }
    6146   
    6247    /**
     
    6752    {
    6853       
     54    }
     55   
     56    void GlobalQuest::XMLPort(Element& xmlelement, XMLPort::Mode mode)
     57    {
     58        SUPER(GlobalQuest, XMLPort, xmlelement, mode);
     59
     60        COUT(1) << "New GlobalQuest {" << this->getId() << "} created." << std::endl;
    6961    }
    7062   
Note: See TracChangeset for help on using the changeset viewer.