8#ifndef ORCUS_ORCUS_CSV_HPP
9#define ORCUS_ORCUS_CSV_HPP
11#include "interface.hpp"
15namespace spreadsheet {
namespace iface {
22 std::unique_ptr<impl> mp_impl;
26 orcus_csv(
const orcus_csv&) =
delete;
27 orcus_csv& operator=(
const orcus_csv&) =
delete;
32 virtual void read_file(std::string_view filepath)
override;
35 virtual std::string_view
get_name()
const override;
Definition interface.hpp:27
virtual void read_stream(std::string_view stream) override
virtual std::string_view get_name() const override
virtual void read_file(std::string_view filepath) override
Definition import_interface.hpp:1164