Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 21, 2005, 3:04:21 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/particleEngine: added the particleEngine-class

Location:
orxonox/branches/particleEngine/src/lib/graphics/partices
Files:
1 added
1 copied

Legend:

Unmodified
Added
Removed
  • orxonox/branches/particleEngine/src/lib/graphics/partices/particle_engine.h

    r3922 r3923  
    11/*!
    2     \file proto_singleton.h
    3     \brief Definition of the proto class template, used quickly start work
    4    
    5     a simple file to copy and create a singleton-class from
     2    \file particle_engine.h
     3    \brief Definition of the ParticleEngine
    64*/
    75
    8 #ifndef _PROTO_SINGLETON_H
    9 #define _PROTO_SINGLETON_H
     6#ifndef _PARTICLE_ENGINE_H
     7#define _PARTICLE_ENGINE_H
    108
    119#include "base_object.h"
    1210
    13 // FORWARD DEFINITION \\
     11// FORWARD DEFINITION
    1412
    1513//! A default singleton class.
    16 class ProtoSingleton : public BaseObject {
     14class ParticleEngine : public BaseObject {
    1715
    1816 public:
    19   static ProtoSingleton* getInstance(void);
    20   virtual ~ProtoSingleton(void);
     17  static ParticleEngine* getInstance(void);
     18  virtual ~ParticleEngine(void);
    2119
    2220 private:
    23   ProtoSingleton(void);
    24   static ProtoSingleton* singletonRef;
     21  ParticleEngine(void);
     22  static ParticleEngine* singletonRef;
    2523};
    2624
    27 #endif /* _PROTO_SINGLETON_H */
     25#endif /* _PARTICLE_ENGINE_H */
Note: See TracChangeset for help on using the changeset viewer.