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 
13 namespace orcus {
14 
15 namespace spreadsheet { namespace iface {
16  class import_styles;
17 }}
18 
19 class ORCUS_DLLPUBLIC import_ods
20 {
21 public:
22  import_ods() = delete;
23  import_ods(const import_ods&) = delete;
24  import_ods& operator=(const import_ods&) = delete;
25 
26  static void read_styles(std::string_view s, spreadsheet::iface::import_styles* data);
27 };
28 
29 }
30 
31 #endif
32 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: orcus_import_ods.hpp:20
Definition: import_interface.hpp:138