CrowdSenSim  1.0
Position.h
Go to the documentation of this file.
1 /*
2  * Position.h
3 
4  *
5  * Created on: 30 giu 2016
6  * Author: Giuseppe Cacciatore
7  */
8 
9 #ifndef POSITION_H_
10 #define POSITION_H_
11 
12 #include <time.h>
13 
14 #include "Location.h"
15 
16 struct Position{
17 
19  tm timestamp;
21  Position(Location A, tm B): loc(A), timestamp(B){}
22 };
23 
24 
25 #endif /* POSITION_H_ */
Definition: Position.h:16
Location loc
Definition: Position.h:18
Position(Location A, tm B)
Definition: Position.h:21
tm timestamp
Definition: Position.h:19
Definition: Location.h:28