kraken-assessment/src/csv/csv.hh
Bruno BELANYI 0dee0e12dc kraken: csv: move type aliases to 'csv.hh' header
As we need to share it with the CSV writing files.
2022-03-12 11:07:20 +01:00

15 lines
309 B
C++

#pragma once
#include <string>
#include <vector>
namespace kraken::csv {
/// Represent a raw CSV line as a vector of strings.
using csv_line_type = std::vector<std::string>;
/// Represent a raw CSV file as a vector of raw CSV lines
using csv_type = std::vector<csv_line_type>;
} // namespace kraken::csv