kraken-assessment/src/csv/write-csv.hh
Bruno BELANYI 23b71018ac kraken: csv: add writing functionality
Once again, pretty naive, but it will do.
2022-03-12 11:07:20 +01:00

15 lines
248 B
C++

#pragma once
#include <iosfwd>
#include <string>
#include <vector>
#include "csv/csv.hh"
namespace kraken::csv {
/// Write raw CSV data to an output-stream.
void write_csv(std::ostream& output, csv_type const& csv);
} // namespace kraken::csv