Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 9, 2005, 3:01:57 AM (19 years ago)
Author:
buerlia
Message:

orxonox/branches/physics: IPhyics gets a mass..

File:
1 moved

Legend:

Unmodified
Added
Removed
  • orxonox/branches/physics/src/util/physics/physics_engine.h

    r4003 r4121  
    11/*!
    2     \file proto_class.h
     2    \file physics_engine.h
    33    \brief Definition of the proto class template, used quickly start work
    44    \todo Example: this shows how to use simply add a Marker that here has to be done something.
    55
    6     The Protoclass exists, to help you quikly getting the run for how to develop in orxonox.
     6    The PhysicsEngine exists, to help you quikly getting the run for how to develop in orxonox.
    77    It is an example for the CODING-CONVENTION, and a starting-point for every class.
    88*/
    99
    10 #ifndef _PROTO_CLASS_H
    11 #define _PROTO_CLASS_H
     10#ifndef _PHYSICS_ENGINE_H
     11#define _PHYSICS_ENGINE_H
    1212
    13 #include "what realy has to be included"
    1413#include "base_object.h"
    1514
     
    2423   here can be some longer description of this class
    2524*/
    26 class ProtoClass : public BaseObject {
     25class PhysicsEngine : public BaseObject {
    2726
    2827 public:
    29   ProtoClass();
    30   virtual ~ProtoClass();
     28  PhysicsEngine();
     29  virtual ~PhysicsEngine();
    3130
    3231  bool doNonSense (int nothing);
     
    3736};
    3837
    39 #endif /* _PROTO_CLASS_H */
     38#endif /* _PHYSICS_ENGINE_H */
Note: See TracChangeset for help on using the changeset viewer.