STOFFSpreadsheetDecoder.hxx
Go to the documentation of this file.
1 /* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */
2 
3 /* libstaroffice
4 * Version: MPL 2.0 / LGPLv2+
5 *
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 2.0 (the "License"); you may not use this file except in compliance with
8 * the License or as specified alternatively below. You may obtain a copy of
9 * the License at http://www.mozilla.org/MPL/
10 *
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
15 *
16 * Major Contributor(s):
17  * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org)
18  * Copyright (C) 2004 Marc Oude Kotte (marc@solcon.nl)
19 * Copyright (C) 2002 William Lachance (wrlach@gmail.com)
20 * Copyright (C) 2002,2004 Marc Maurer (uwog@uwog.net)
21 * Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
22 * Copyright (C) 2006, 2007 Andrew Ziem
23 * Copyright (C) 2011, 2012 Alonso Laurent (alonso@loria.fr)
24 *
25 *
26 * All Rights Reserved.
27 *
28 * For minor contributions see the git repository.
29 *
30 * Alternatively, the contents of this file may be used under the terms of
31 * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
32 * in which case the provisions of the LGPLv2+ are applicable
33 * instead of those above.
34 */
35 
36 #ifndef STOFF_SPREADSHEET_DECODER_HXX
37 #define STOFF_SPREADSHEET_DECODER_HXX
38 
39 #include <librevenge/librevenge.h>
41 
42 #include "STOFFPropertyHandler.hxx"
43 
49 {
50 public:
52  explicit STOFFSpreadsheetDecoder(librevenge::RVNGSpreadsheetInterface *output)
54  , m_output(output) { }
57 
59  void insertElement(const char *psName) final;
61  void insertElement(const char *psName, const librevenge::RVNGPropertyList &xPropList) final;
63  void insertElement(const char *psName, const librevenge::RVNGPropertyList &xPropList,
64  const librevenge::RVNGPropertyListVector &vector);
66  void characters(const librevenge::RVNGString &sCharacters) final
67  {
68  if (!m_output) return;
69  m_output->insertText(sCharacters);
70  }
71 private:
77  librevenge::RVNGSpreadsheetInterface *m_output;
78 };
79 
80 #endif
81 
82 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
a generic property handler
Definition: STOFFPropertyHandler.hxx:44
main class used to decode a librevenge::RVNGBinaryData created by
Definition: STOFFSpreadsheetDecoder.hxx:49
STOFFSpreadsheetDecoder operator=(STOFFSpreadsheetDecoder const &)
operator= (undefined)
STOFFSpreadsheetDecoder(librevenge::RVNGSpreadsheetInterface *output)
constructor
Definition: STOFFSpreadsheetDecoder.hxx:52
void insertElement(const char *psName, const librevenge::RVNGPropertyList &xPropList, const librevenge::RVNGPropertyListVector &vector)
insert an element ( with a librevenge::RVNGPropertyListVector parameter )
STOFFSpreadsheetDecoder(STOFFSpreadsheetDecoder const &)
copy constructor (undefined)
void characters(const librevenge::RVNGString &sCharacters) final
insert a sequence of character
Definition: STOFFSpreadsheetDecoder.hxx:66
void insertElement(const char *psName) final
insert an element
Definition: STOFFSpreadsheetDecoder.cxx:47
~STOFFSpreadsheetDecoder() final
destructor
Definition: STOFFSpreadsheetDecoder.hxx:56
librevenge::RVNGSpreadsheetInterface * m_output
the interface output
Definition: STOFFSpreadsheetDecoder.hxx:77

Generated on Wed Mar 15 2023 00:00:00 for libstaroffice by doxygen 1.9.1