-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaisEval.h
42 lines (28 loc) · 1007 Bytes
/
aisEval.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/************************************************************************/
/* */
/* P R O J E K T A V A L O N */
/* */
/* destination.h The Class to store the ais Obstacles */
/* */
/* Last Change 28. July 2009; Gion-Andri Büsser */
/* */
/************************************************************************/
#ifndef AISEVAL_H
#define AISEVAL_H
#include <DDXStore.h>
#include <DDXVariable.h>
DDX_STORE_TYPE(ShipStruct,
struct {
unsigned long mmsi;
double timestamp;
double x; //everything in meters
double y;
}
);
DDX_STORE_TYPE(ShipData,
struct {
ShipStruct Data[15];
int shipCount; //states how many ships have to be encountered (max 15)
}
);
#endif //aisEval.h