| 1234567891011121314151617181920 |
- //
- // Created by wrede on 22.04.16.
- //
- #ifndef GBMOT_CONSTANTS_H
- #define GBMOT_CONSTANTS_H
- #include <vector>
- #include <boost/graph/properties.hpp>
- #include <boost/graph/adjacency_list.hpp>
- #include <boost/graph/graph_selectors.hpp>
- #include "ObjectData.h"
- namespace core
- {
- typedef std::vector<std::vector<std::vector<double>>> Vector3d;
- typedef std::vector<std::vector<double>> Vector2d;
- }
- #endif //GBMOT_CONSTANTS_H
|