mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
21 lines
232 B
C++
21 lines
232 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
|
|
|