Marine systems simulation
IBottomForceCalc.h
1
14#ifndef IBOTTOMFORCECALC_H_
15#define IBOTTOMFORCECALC_H_
16
17#include "IBottomDepth.h"
19{
20 public:
21 IBottomForceCalc(IBottomDepth* pBottomDepth) { m_pBottomDepth = pBottomDepth; }
22
23 protected:
24 IBottomDepth* m_pBottomDepth;
25};
26
27#endif /* IBOTTOMFORCECALC_H_ */
Definition: IBottomDepth.h:12
Interface for calculating the bottom force on various objects.
Definition: IBottomForceCalc.h:19