Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 13, 2005, 11:57:13 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/physics: added a simple force; GRAVITY

Location:
orxonox/branches/physics/src/util/physics/fields
Files:
1 added
1 copied

Legend:

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

    r4178 r4180  
    11/*!
    2     \file proto_class.h
     2    \file gravity.h
    33    \brief Definition of ...
    44
    55*/
    66
    7 #ifndef _PROTO_CLASS_H
    8 #define _PROTO_CLASS_H
     7#ifndef _GRAVITY_H
     8#define _GRAVITY_H
    99
    10 #include "base_object.h"
     10#include "field.h"
    1111
    1212// FORWARD DEFINITION
     
    1515
    1616//! A class for ...
    17 class ProtoClass : public BaseObject {
     17class Gravity : public Field {
    1818
    1919 public:
    20   ProtoClass();
    21   virtual ~ProtoClass();
     20  Gravity();
     21  virtual ~Gravity();
    2222
     23  virtual Vector calcForce(const Vector& data) const;
    2324
    2425 private:
     
    2627};
    2728
    28 #endif /* _PROTO_CLASS_H */
     29#endif /* _GRAVITY_H */
Note: See TracChangeset for help on using the changeset viewer.