FictionBook2XMLParserContext.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 FICTIONBOOK2XMLPARSERCONTEXT_H_INCLUDED
11 #define FICTIONBOOK2XMLPARSERCONTEXT_H_INCLUDED
12 
13 namespace libebook
14 {
15 
16 struct FictionBook2TokenData;
17 
19 {
20 public:
21  virtual ~FictionBook2XMLParserContext() = 0;
22 
31 
37 
43  virtual void startOfElement() = 0;
44 
47  virtual void endOfElement() = 0;
48 
54  virtual void attribute(const FictionBook2TokenData &name, const FictionBook2TokenData *ns, const char *value) = 0;
55 
58  virtual void endOfAttributes() = 0;
59 
65  virtual void text(const char *value) = 0;
66 };
67 
68 }
69 
70 #endif // FICTIONBOOK2XMLPARSERCONTEXT_H_INCLUDED
71 
72 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
libebook::FictionBook2XMLParserContext::attribute
virtual void attribute(const FictionBook2TokenData &name, const FictionBook2TokenData *ns, const char *value)=0
Process an attribute.
libebook::FictionBook2XMLParserContext::~FictionBook2XMLParserContext
virtual ~FictionBook2XMLParserContext()=0
Definition: FictionBook2XMLParserContext.cpp:15
libebook
Definition: BBeBCollector.cpp:19
value
qi::rule< Iterator, AttrValue_t, qi::space_type > value
Definition: TealDocParser.cpp:231
libebook::FictionBook2XMLParserContext::leaveContext
virtual FictionBook2XMLParserContext * leaveContext() const =0
Destroy this context and return parent.
libebook::FictionBook2XMLParserContext
Definition: FictionBook2XMLParserContext.h:19
libebook::FictionBook2XMLParserContext::startOfElement
virtual void startOfElement()=0
Signalize the start of an element.
libebook::FictionBook2XMLParserContext::text
virtual void text(const char *value)=0
Process textual content of an element.
name
string name
Definition: HTMLHelpStream.cpp:80
FictionBook2XMLParserContext.h
libebook::FictionBook2XMLParserContext::endOfAttributes
virtual void endOfAttributes()=0
Signalize the end of attributes.
libebook::FictionBook2XMLParserContext::element
virtual FictionBook2XMLParserContext * element(const FictionBook2TokenData &name, const FictionBook2TokenData &ns)=0
Create a context for parsing a child element.
libebook::FictionBook2TokenData
Definition: FictionBook2Token.h:134
libebook::FictionBook2XMLParserContext::endOfElement
virtual void endOfElement()=0
Signalize the end of an element.

Generated for libe-book by doxygen 1.8.20