| 6 | #include "text_parser.h" |
| 7 | |
| 8 | TextFileParser::TextFileParser( |
| 9 | const fs_path &path, const char *delimiters, const char *comentaries, const char *quotes) |
| 10 | { |
| 11 | if (!fs_path_empty(path)) |
| 12 | { |
| 13 | m_File.Load(path); |
| 14 | } |
| 15 | StartupInitalize(delimiters, comentaries, quotes); |
| 16 | } |
| 17 | |
| 18 | TextFileParser::~TextFileParser() |
| 19 | { |
nothing calls this directly
no test coverage detected