12345678910111213141516171819202122232425262728293031323334 |
- #ifndef CSVREADER_H
- #define CSVREADER_H
- #include <string>
- #include <vector>
- #include <fstream>
- class CSVReader
- {
- private:
- std::ifstream stream;
- int byteCount;
- public:
-
-
- CSVReader(std::string path);
-
- std::vector<std::string>getNextRow();
-
- bool hasNext() const;
-
- int getProgress();
- };
- #endif
|