MT Core (C++)
Core library for replacing C++ standard in project usage
Loading...
Searching...
No Matches
csv/reader.hpp
Go to the documentation of this file.
1#ifndef MTCORE_CSV_READER_HPP
2#define MTCORE_CSV_READER_HPP
3
5#include "mtcore/traits.hpp"
7
8namespace mtcore::csv {
9
10 template<ReaderImpl RI>
11 struct Reader {
13
14 struct Field {};
15
16 using ReadElem = Field;
17 };
18} // namespace mtcore::csv
19
20#endif // MTCORE_CSV_READER_HPP
CSV namespace for CSV-related utilities.
Definition common.hpp:6
io::Reader< RI > & underlying
A reader that reads data from some sort of stream or buffer Note: the data elements read should be tr...
Definition io/reader.hpp:42