Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 1, 2008, 8:32:10 PM (17 years ago)
Author:
landauf
Message:
  • adopted quest classes to the new hierarchy (with a creator pointer)
  • added "RegisterObject(…)" in all constructors and "virtual" to all destructors
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/objects/quest/QuestEffect.cc

    r2091 r2092  
    3838        Is not meant to be invoked directly, since this is only an interface.
    3939    */
    40     QuestEffect::QuestEffect() : BaseObject()
     40    QuestEffect::QuestEffect(BaseObject* creator) : BaseObject(creator)
    4141    {
    4242        RegisterObject(QuestEffect);
    4343    }
    44    
     44
    4545    /**
    4646    @brief
     
    4949    QuestEffect::~QuestEffect()
    5050    {
    51        
     51
    5252    }
    53    
     53
    5454    /**
    5555    @brief
     
    6565    {
    6666        bool check = true;
    67        
     67
    6868        for (std::list<QuestEffect*>::iterator effect = effects.begin(); effect != effects.end(); effect++)
    6969        {
Note: See TracChangeset for help on using the changeset viewer.