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(core::Vector3d& values, const std::string& filename,
32  const char& delimiter = ';');
33 
41  static void ReadCSV(core::Vector2d& values, const std::string& filename,
42  const char& delimiter = ';');
43  };
44 }
45 
46 
47 #endif //GBMOT_FILEIO_H
Definition: FileIO.cpp:8
Definition: FileIO.h:17
static void ReadCSV(core::Vector3d &values, const std::string &filename, const char &delimiter=';')
Definition: FileIO.cpp:10