Marine systems simulation
IBottomDepth.h
1/*
2 * IBottomDepth.h
3 *
4 * Created on: Mar 3, 2011
5 * Author: kjr
6 */
7
8#ifndef IBOTTOMDEPTH_H_
9#define IBOTTOMDEPTH_H_
10
12{
13 public:
14 ~IBottomDepth(void){};
15 virtual double GetDepth(const double dX, const double dY) = 0;
16 virtual void GetDepth(const double* const adX, const double* const adY, double* const adDepth, int iSize) = 0;
17 virtual double GetSubmergence(const double dX, const double dY, const double dZ) = 0;
18 virtual double GetSubmergence(const double adPos[3]) = 0;
19};
20
21
22#endif /* IBOTTOMDEPTH_H_ */
Definition: IBottomDepth.h:12