Commit 8c08258c authored by edgarriba's avatar edgarriba

moved headers

parent 3a2cf371
#include "CsvReader.h" #include "CsvReader.h"
#include "Utils.h"
/** The default constructor of the CSV reader Class */ /** The default constructor of the CSV reader Class */
CsvReader::CsvReader(const string &path, const char &separator){ CsvReader::CsvReader(const string &path, const char &separator){
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#include <iostream> #include <iostream>
#include <fstream> #include <fstream>
#include <opencv2/core/core.hpp> #include <opencv2/core/core.hpp>
#include "Utils.h"
using namespace std; using namespace std;
using namespace cv; using namespace cv;
......
#include "CsvWriter.h" #include "CsvWriter.h"
#include "Utils.h"
CsvWriter::CsvWriter(const string &path, const string &separator){ CsvWriter::CsvWriter(const string &path, const string &separator){
_file.open(path.c_str(), ofstream::out); _file.open(path.c_str(), ofstream::out);
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#include <iostream> #include <iostream>
#include <fstream> #include <fstream>
#include <opencv2/core/core.hpp> #include <opencv2/core/core.hpp>
#include "Utils.h"
using namespace std; using namespace std;
using namespace cv; using namespace cv;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment