Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 30, 2007, 9:48:52 PM (16 years ago)
Author:
rgrieder
Message:
  • fixed multiple template instantiation problem under windows
  • removed some warnings by introducing explicit casts
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/orxonox/objects/Tickable.h

    r708 r729  
    5252
    5353    //! The Tickable interface provides a tick(dt) function, that gets called every frame.
    54     class Tickable : virtual public OrxonoxClass
     54    class _OrxonoxExport Tickable : virtual public OrxonoxClass
    5555    {
    5656        public:
     
    6767            Tickable() { RegisterRootObject(Tickable); }
    6868    };
     69    ExportAbstractClass(Tickable, Orxonox);
    6970
    7071    //! The TickFrameListener calls the tick(dt) function of all Tickables every frame.
    71     class TickFrameListener : public Ogre::FrameListener
     72    class _OrxonoxExport TickFrameListener : public Ogre::FrameListener
    7273    {
    7374        private:
Note: See TracChangeset for help on using the changeset viewer.