Vince's CSV Parser
|
A barebones class used for describing CSV fields. More...
#include <csv_row.hpp>
Public Member Functions | |
RawCSVField (size_t _start, size_t _length, bool _double_quote=false) | |
Public Attributes | |
size_t | start |
The start of the field, relative to the beginning of the row. | |
size_t | length |
The length of the row, ignoring quote escape characters. | |
bool | has_double_quote |
Whether or not the field contains an escaped quote. | |
A barebones class used for describing CSV fields.
Definition at line 33 of file csv_row.hpp.