Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 12, 2009, 1:32:30 AM (15 years ago)
Author:
landauf
Message:

Put all tools into a new library called tools (phear my naming skillz!)
I had to move Tickable.h and TimeFactorListener.h to tools/interfaces
Theoretically one could move the other interfaces as well (except RadarViewable), but I don't think they belong to "tools" (just because you CAN, it doesn't mean you HAVE to).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/libraries/src/orxonox/interfaces/InterfaceCompilation.cc

    r5619 r5633  
    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"
    4240#include "NotificationListener.h"
    4341
     
    8280
    8381    //----------------------------
    84     // TimeFactorListener
    85     //----------------------------
    86     float TimeFactorListener::timefactor_s = 1.0f;
    87 
    88     TimeFactorListener::TimeFactorListener()
    89     {
    90         RegisterRootObject(TimeFactorListener);
    91     }
    92 
    93     //----------------------------
    94     // Tickable
    95     //----------------------------
    96     /**
    97         @brief Constructor: Registers the object in the Tickable-list
    98     */
    99     Tickable::Tickable()
    100     {
    101         RegisterRootObject(Tickable);
    102     }
    103 
    104     //----------------------------
    10582    // Rewardable
    10683    //----------------------------
Note: See TracChangeset for help on using the changeset viewer.