thread pool changed

This commit is contained in:
2022-01-16 17:50:15 +01:00
parent 43d45e5bca
commit 471f218bdf
4 changed files with 154 additions and 184 deletions

View File

@@ -27,7 +27,7 @@ public:
explicit CsvReader(bool skip_hdr = true, char field_sep = ',', char quote_ch = '"', char line_sep = '\r', char line_sep2 = '\n');
size_t parseCSVFile(const std::string &filename, std::vector<ColDefNode> &cols_def, Table& table);
size_t parseCSVString(const std::string csvSource, std::vector<ColDefNode> &cols_def, Table& table);
size_t parseCSVString(const std::string &csvSource, std::vector<ColDefNode> &cols_def, Table& table);
};
} // namespace