/*! \file particle_engine.h \brief Definition of the ParticleEngine */ #ifndef _PARTICLE_ENGINE_H #define _PARTICLE_ENGINE_H #include "base_object.h" // FORWARD DEFINITION //! A default singleton class. class ParticleEngine : public BaseObject { public: static ParticleEngine* getInstance(void); virtual ~ParticleEngine(void); private: ParticleEngine(void); static ParticleEngine* singletonRef; }; #endif /* _PARTICLE_ENGINE_H */