WKSParser.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* libwps
3  * Version: MPL 2.0 / LGPLv2.1+
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * Major Contributor(s):
10  * Copyright (C) 2002 William Lachance (william.lachance@sympatico.ca)
11  * Copyright (C) 2002 Marc Maurer (uwog@uwog.net)
12  *
13  * For minor contributions see the git repository.
14  *
15  * Alternatively, the contents of this file may be used under the terms
16  * of the GNU Lesser General Public License Version 2.1 or later
17  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
18  * applicable instead of those above.
19  *
20  * For further information visit http://libwps.sourceforge.net
21  */
22 
23 #ifndef WKSPARSER_H
24 #define WKSPARSER_H
25 
26 #include <map>
27 #include <string>
28 
29 #include "libwps_internal.h"
30 
31 #include "WPSDebug.h"
32 
33 class WKSParser
34 {
35 public:
36  WKSParser(RVNGInputStreamPtr &input, WPSHeaderPtr &header);
37  virtual ~WKSParser();
38  virtual void parse(librevenge::RVNGSpreadsheetInterface *documentInterface) = 0;
39 
40 protected:
42  {
43  return m_input;
44  }
47  {
48  return m_header;
49  }
50  int version() const
51  {
52  return m_version;
53  }
54  void setVersion(int vers)
55  {
56  m_version=vers;
57  }
60  {
61  return m_asciiFile;
62  }
63 
64 private:
65  explicit WKSParser(const WKSParser &);
66  WKSParser &operator=(const WKSParser &);
67 
68  // the main input
70  // the header
72  // the file version
73  int m_version;
76 };
77 
78 #endif /* WKSPARSER_H */
79 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
RVNGInputStreamPtr m_input
Definition: WKSParser.h:69
RVNGInputStreamPtr & getInput()
Definition: WKSParser.h:41
Definition: WPSDebug.h:196
WKSParser(RVNGInputStreamPtr &input, WPSHeaderPtr &header)
Definition: WKSParser.cpp:30
shared_ptr< WPSHeader > WPSHeaderPtr
shared pointer to WPSHeader
Definition: libwps_internal.h:110
WPSHeaderPtr m_header
Definition: WKSParser.h:71
int m_version
Definition: WKSParser.h:73
RVNGInputStreamPtr getFileInput()
Definition: WKSParser.cpp:41
virtual void parse(librevenge::RVNGSpreadsheetInterface *documentInterface)=0
WKSParser & operator=(const WKSParser &)
shared_ptr< librevenge::RVNGInputStream > RVNGInputStreamPtr
shared pointer to librevenge::RVNGInputStream
Definition: libwps_internal.h:88
libwps::DebugFile & ascii()
a DebugFile used to write what we recognize when we parse the document
Definition: WKSParser.h:59
void setVersion(int vers)
Definition: WKSParser.h:54
libwps::DebugFile m_asciiFile
the debug file
Definition: WKSParser.h:75
WPSHeaderPtr & getHeader()
Definition: WKSParser.h:46
int version() const
Definition: WKSParser.h:50
virtual ~WKSParser()
Definition: WKSParser.cpp:37
Definition: WKSParser.h:33

Generated on Wed Oct 26 2016 16:54:38 for libwps by doxygen 1.8.12