8#ifndef ORCUS_ORCUS_CSV_HPP
9#define ORCUS_ORCUS_CSV_HPP
11#include "interface.hpp"
15namespace spreadsheet {
namespace iface {
27 virtual void read_file(
const std::string& filepath);
30 virtual const char* get_name()
const;
33 void parse(
const char* content,
size_t len);
Definition: interface.hpp:24
Definition: orcus_csv.hpp:20
virtual void read_stream(const char *content, size_t len)
expects the whole content of the file
virtual void read_file(const std::string &filepath)
expects a system path to a local file
Definition: import_interface.hpp:882