Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 29, 2009, 10:19:38 PM (15 years ago)
Author:
landauf
Message:

merged libraries branch back to trunk

Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/orxonox/interfaces/InterfaceCompilation.cc

    r3327 r5693  
    3030@file
    3131@brief
    32     Compiles all the interfaces (except RadarViewable) with mostly just a constructor.
     32    Compiles all the interfaces in the orxonox library with mostly just a constructor.
    3333*/
    3434
     
    3838#include "Rewardable.h"
    3939#include "TeamColourable.h"
    40 #include "Tickable.h"
    41 #include "TimeFactorListener.h"
     40#include "NotificationListener.h"
    4241
    4342#include "core/CoreIncludes.h"
     
    8180
    8281    //----------------------------
    83     // TimeFactorListener
    84     //----------------------------
    85     float TimeFactorListener::timefactor_s = 1.0f;
    86 
    87     TimeFactorListener::TimeFactorListener()
    88     {
    89         RegisterRootObject(TimeFactorListener);
    90     }
    91 
    92     //----------------------------
    93     // Tickable
    94     //----------------------------
    95     /**
    96         @brief Constructor: Registers the object in the Tickable-list
    97     */
    98     Tickable::Tickable()
    99     {
    100         RegisterRootObject(Tickable);
    101     }
    102 
    103     //----------------------------
    10482    // Rewardable
    10583    //----------------------------
     
    10886        RegisterObject(Rewardable);
    10987    }
     88
     89    //----------------------------
     90    // NotificationListener
     91    //----------------------------
     92    NotificationListener::NotificationListener()
     93    {
     94        RegisterObject(NotificationListener);
     95    }
    11096}
Note: See TracChangeset for help on using the changeset viewer.