Tracore
Parser.h
1 //
2 // Created by wrede on 22.04.16.
3 //
4 
5 #ifndef GBMOT_PARSE_H
6 #define GBMOT_PARSE_H
7 
8 #include "../core/Definitions.h"
9 #include "../core/DetectionSequence.h"
10 
11 namespace util
12 {
16  class Parser
17  {
18  public:
29  static void ParseObjectDataMap(
30  const std::vector<std::string> &keys,
31  const core::Vector3d &values,
32  core::DetectionSequence &sequence);
33  };
34 }
35 
36 
37 #endif //GBMOT_PARSE_H
Definition: FileIO.cpp:7
static void ParseObjectDataMap(const std::vector< std::string > &keys, const core::Vector3d &values, core::DetectionSequence &sequence)
Definition: Parser.cpp:9
Definition: Parser.h:16
Definition: DetectionSequence.h:20