Marine systems simulation
ICurrentVel.h
1/*
2 * ICurrentVel.h
3 *
4 * Created on: Mar 11, 2011
5 * Author: kjr
6 */
7
8#ifndef I_CURRENT_VEL_H_
9#define I_CURRENT_VEL_H_
10
12{
13 public:
14 ~ICurrentVel(void){};
15 virtual void GetCurrent(double* const adCurrentVel, const double* const adPos, const double dT) = 0;
16 virtual void GetCurrent(float* const adCurrentVel, const float* const adPos, const float dT) = 0;
17};
18
19
20#endif /* I_CURRENT_VEL_H_ */
Definition: ICurrentVel.h:12