Orcus
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{
22private:
23 import_xlsx(); // deleted
24 import_xlsx(const import_xlsx&); // deleted
25 import_xlsx& operator=(const import_xlsx&); // deleted
26
27public:
28 static void read_table(
29 const char* p, size_t n,
32};
33
34}
35
36#endif
37
38/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: orcus_import_xlsx.hpp:21
Definition: import_interface.hpp:836
Definition: import_interface.hpp:520