Go to the documentation of this file.00001 #ifndef OPENTISSUE_DYNAMICS_PSYS_PSYS_FORCE_H
00002 #define OPENTISSUE_DYNAMICS_PSYS_PSYS_FORCE_H
00003
00004
00005
00006
00007
00008
00009
00010 #include <OpenTissue/configuration.h>
00011
00012 namespace OpenTissue
00013 {
00014 namespace psys
00015 {
00016
00017 template<typename types>
00018 class Force
00019 : public types::connector_type
00020 {
00021 public:
00022
00023 Force() {}
00024
00025 virtual ~Force(){}
00026
00027 public:
00028
00033 virtual void apply()=0;
00034
00035 };
00036
00037 }
00038
00039 }
00040
00041
00042 #endif