mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-24 11:11:02 -07:00
18 lines
237 B
C++
18 lines
237 B
C++
#ifndef CSVREADER_H
|
|
#define CSVREADER_H
|
|
|
|
#include <istream>
|
|
|
|
class CsvReader
|
|
{
|
|
public:
|
|
CsvReader(std::istream& istream): _istream(istream) {}
|
|
|
|
std::vector<std::string> readLine();
|
|
|
|
private:
|
|
std::istream& _istream;
|
|
};
|
|
|
|
#endif
|