Tracore
FileIO.h
1 //
2 // Created by wrede on 19.04.16.
3 //
4 
5 #ifndef GBMOT_FILEIO_H
6 #define GBMOT_FILEIO_H
7 
8 #include "../core/Definitions.h"
9 #include <string>
10 #include <fstream>
11 
12 namespace util
13 {
17  class FileIO
18  {
19  public:
31  static void ReadCSV(
32  const std::string &filename,
33  const char &delimiter,
34  core::Vector3d &values);
42  static void ReadCSV(
43  const std::string &filename,
44  const char &delimiter,
45  core::Vector2d &values);
46  };
47 }
48 
49 
50 #endif //GBMOT_FILEIO_H
Definition: FileIO.cpp:7
static void ReadCSV(const std::string &filename, const char &delimiter, core::Vector3d &values)
Definition: FileIO.cpp:9
Definition: FileIO.h:17