Tracore
Definitions.h
1 //
2 // Created by wrede on 22.04.16.
3 //
4 
5 #ifndef GBMOT_CONSTANTS_H
6 #define GBMOT_CONSTANTS_H
7 
8 #include <vector>
9 #include <boost/graph/properties.hpp>
10 #include <boost/graph/adjacency_list.hpp>
11 #include <boost/graph/graph_selectors.hpp>
12 #include "ObjectData.h"
13 
14 namespace core
15 {
16  typedef std::vector<std::vector<std::vector<double>>> Vector3d;
17  typedef std::vector<std::vector<double>> Vector2d;
18 }
19 
20 #endif //GBMOT_CONSTANTS_H
Definition: Definitions.h:14