OEBParser.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /*
3  * This file is part of the libe-book project.
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 
10 #ifndef OEBPARSER_H_INCLUDED
11 #define OEBPARSER_H_INCLUDED
12 
13 #include <libe-book/libe-book.h>
14 
15 namespace libebook
16 {
17 
18 class OEBParser
19 {
20  // disable copying
21  OEBParser(const OEBParser &other);
22  OEBParser &operator=(const OEBParser &other);
23 
24 public:
25  OEBParser(librevenge::RVNGInputStream *input, librevenge::RVNGTextInterface *document);
26 
27  void parse();
28 
29 private:
30  librevenge::RVNGInputStream *const m_input;
31  librevenge::RVNGTextInterface *const m_document;
32 };
33 
34 }
35 
36 #endif // OEBPARSER_H_INCLUDED
37 
38 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Definition: OEBParser.h:18
Definition: EBOOKHTMLToken.h:91
OEBParser(const OEBParser &other)
librevenge::RVNGTextInterface *const m_document
Definition: OEBParser.h:31
librevenge::RVNGInputStream *const m_input
Definition: OEBParser.h:30
OEBParser & operator=(const OEBParser &other)
void parse()
Definition: OEBParser.cpp:23
XMLTreeNodePtr_t document
Definition: EBOOKHTMLParser.cpp:169
Definition: CHMParser.cpp:20

Generated for libe-book by doxygen 1.8.8