Orcus
Loading...
Searching...
No Matches
orcus_import_xlsx.hpp
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 */
7
8#ifndef INCLUDED_ORCUS_ORCUS_IMPORT_XLSX_HPP
9#define INCLUDED_ORCUS_ORCUS_IMPORT_XLSX_HPP
10
11#include "interface.hpp"
12
13namespace orcus {
14
15namespace spreadsheet { namespace iface {
16 class import_table;
17 class import_reference_resolver;
18}}
19
20class ORCUS_DLLPUBLIC import_xlsx
21{
22public:
23 import_xlsx() = delete;
24 import_xlsx(const import_xlsx&) = delete;
25 import_xlsx& operator=(const import_xlsx&) = delete;
26
27 static void read_table(
28 std::string_view s,
31};
32
33}
34
35#endif
36
37/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition orcus_import_xlsx.hpp:21
Definition import_interface.hpp:1122
Definition import_interface.hpp:554