Aggiustati include

This commit is contained in:
2026-06-08 11:46:06 +02:00
parent f15e13475d
commit a2a299c0a1
7 changed files with 23 additions and 6 deletions
+6 -1
View File
@@ -4,6 +4,9 @@
#include <vector>
#include <string>
#ifndef CSV_H
#define CSV_H
#define DATA_PATH std::string("./../../data/")
class CSVProcessor {
@@ -19,4 +22,6 @@ public:
// Getter for data
const std::vector<std::vector<float>>& getData() const;
};
};
#endif