Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/physics/src/util/physics/physical_interaction_sym.h @ 3962

Last change on this file since 3962 was 3962, checked in by patrick, 19 years ago

orxonox/branches/physics: just got the inheritance right

File size: 506 bytes
Line 
1/*!
2    \file physical_interaction_sym.h
3    \brief this defines a symmetrical interaction like a spring force on both ends
4*/
5
6#ifndef _PHYSICAL_INTERACTION_SYM_H
7#define _PHYSICAL_INTERACTION_SYM_H
8
9#include "physical_interaction.h"
10
11
12//! A symmetrical physical interaction
13/**
14   eg. this can be a spring
15*/
16class PhysicalInteractionSym : public PhysicalInteraction {
17
18 public:
19  PhysicalInteractionSym();
20  virtual ~PhysicalInteractionSym();
21
22
23 private:
24
25};
26
27
28#endif /* _PHYSICAL_INTERACTION_SYM_H */
Note: See TracBrowser for help on using the repository browser.