#ifndef CSV_H #define CSV_H #include using namespace std; bool loadCsv(const char *fn, vector > *content); bool saveCsv(const char *fn, vector > *content); void destroyCsv(vector > *content); #endif