8#ifndef INCLUDED_ORCUS_ORCUS_XLS_XML_HPP
9#define INCLUDED_ORCUS_ORCUS_XLS_XML_HPP
11#include "interface.hpp"
16namespace spreadsheet {
namespace iface {
class import_factory; }}
18struct orcus_xls_xml_impl;
23 std::unique_ptr<impl> mp_impl;
33 static bool detect(std::string_view strm);
35 virtual void read_file(std::string_view filepath)
override;
36 virtual void read_file(std::u16string_view filepath)
override;
39 virtual std::string_view
get_name()
const override;
Definition interface.hpp:27
Definition orcus_xls_xml.hpp:21
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:1184