#include #include #include #include #include #ifndef CSV_H #define CSV_H #define DATA_PATH std::string("./../../data/") class CSVProcessor { private: std::vector headers; std::vector> data; public: // Method to read CSV file and store data in vectors void readCSVFile(const std::string& filename); // Getter for headers const std::vector& getHeaders() const; // Getter for data const std::vector>& getData() const; }; #endif