Marine systems simulation
CBasicCurrentVel.h
1/*
2 * CBasicCurrentVel.h
3 *
4 * Created on: Mar 11, 2011
5 * Author: kjr
6 */
7
8#ifndef C_BASIC_CURRENT_VEL_H_
9#define C_BASIC_CURRENT_VEL_H_
10
11#include "ICurrentVel.h"
12
14{
15 public:
17 CBasicCurrentVel(const double* const adInitCurrentVel);
18 ~CBasicCurrentVel(void){};
19 virtual void GetCurrent(double* const adCurrentVel, const double* const adPos, const double dT);
20 virtual void GetCurrent(float* const afCurrentVel, const float* const afPos, const float fT);
21 void SetCurrentVel(const double* const adCurrentVel);
22
23 private:
24 double m_adCurrent[3];
25};
26
27
28#endif /* C_BASIC_CURRENT_VEL_H_ */
Definition: CBasicCurrentVel.h:14
Definition: ICurrentVel.h:12