Marine systems simulation
IBasicBottom.h
1
14#ifndef I_BASIC_BOTTOM_H_
15#define I_BASIC_BOTTOM_H_
16
17#include "IBottomDepth.h"
18#include "IBottomForceBeam.h"
19#include "IBottomForceCylinder.h"
20#include "IBottomForceSphere.h"
21
23{
24 public:
25 IBasicBottom(IBottomDepth* pBottomDepth) { m_pBottomDepth = pBottomDepth; }
26
27 protected:
28 IBottomDepth* m_pBottomDepth;
29};
30
31#endif /* I_BASIC_BOTTOM_H_ */
Interface for calculating the bottom force on various objects.
Definition: IBasicBottom.h:23
Definition: IBottomDepth.h:12
Interface for calculating the bottom force on a beam.
Definition: IBottomForceBeam.h:19
Interface for calculating the bottom force on a cylinder.
Definition: IBottomForceCylinder.h:18
Interface for calculating the bottom force on a sphere.
Definition: IBottomForceSphere.h:19