Orcus
orcus_import_ods.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 ORCUS_ORCUS_IMPORT_ODS_HPP
9#define ORCUS_ORCUS_IMPORT_ODS_HPP
10
11#include "interface.hpp"
12
13namespace orcus {
14
15namespace spreadsheet { namespace iface {
16 class import_styles;
17}}
18
19class ORCUS_DLLPUBLIC import_ods
20{
21private:
22 import_ods(); // deleted
23 import_ods(const import_ods&); // deleted
24 import_ods& operator=(const import_ods&); // deleted
25
26public:
27 static void read_styles(const char* p, size_t n, spreadsheet::iface::import_styles* data);
28};
29
30}
31
32#endif
33/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: orcus_import_ods.hpp:20
Definition: import_interface.hpp:146