Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 29, 2005, 11:55:57 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: renamed iphysics to physics_interface

File:
1 moved

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/physics/physics_interface.h

    r4371 r4375  
    11/*!
    2     \file i_physics.h
     2    \file physics_interface.h
    33    \brief a physics interface simulating a body with a mass
    44*/
    55
    6 #ifndef _I_PHYSICS_H
    7 #define _I_PHYSICS_H
     6#ifndef _PHYSICS_INTERFACE_H
     7#define _PHYSICS_INTERFACE_H
    88
    99#include "p_node.h"
     
    1313   here can be some longer description of this class
    1414*/
    15 class IPhysics : public PNode {
     15class PhysicsInterface : public PNode {
    1616
    1717 public:
    18   IPhysics();
    19   virtual ~IPhysics();
     18  PhysicsInterface();
     19  virtual ~PhysicsInterface();
    2020 
    2121  inline void setMass( float mass ) { this->mass = mass; };                                     //!< Set the mass of this node
     
    3838};
    3939
    40 #endif /* _I_PHYSICS_H */
     40#endif /* _PHYSICS_INTERFACE_H */
Note: See TracChangeset for help on using the changeset viewer.