Xerces-C++ 3.2.5
Parser.hpp
Go to the documentation of this file.
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18/*
19 * $Id$
20 */
21
22#if !defined(XERCESC_INCLUDE_GUARD_PARSER_HPP)
23#define XERCESC_INCLUDE_GUARD_PARSER_HPP
24
26
28
29class DTDHandler;
30class EntityResolver;
31class DocumentHandler;
32class ErrorHandler;
33class InputSource;
34
59
61{
62public:
64 // -----------------------------------------------------------------------
65 // Constructors and Destructor
66 // -----------------------------------------------------------------------
68
70 {
71 }
73 virtual ~Parser()
74 {
75 }
77
78 //-----------------------------------------------------------------------
79 // The parser interface
80 //-----------------------------------------------------------------------
99 virtual void setEntityResolver(EntityResolver* const resolver) = 0;
100
116 virtual void setDTDHandler(DTDHandler* const handler) = 0;
117
134 virtual void setDocumentHandler(DocumentHandler* const handler) = 0;
135
153 virtual void setErrorHandler(ErrorHandler* const handler) = 0;
154
180 virtual void parse
181 (
182 const InputSource& source
183 ) = 0;
184
204 virtual void parse
205 (
206 const XMLCh* const systemId
207 ) = 0;
208
228 virtual void parse
229 (
230 const char* const systemId
231 ) = 0;
233
234
235private :
236 /* The copy constructor, you cannot call this directly */
237 Parser(const Parser&);
238
239 /* The assignment operator, you cannot call this directly */
240 Parser& operator=(const Parser&);
241};
242
244
245#endif
#define XERCES_CPP_NAMESPACE_BEGIN
Definition XercesDefs.hpp:112
#define SAX_EXPORT
Definition XercesDefs.hpp:164
#define XERCES_CPP_NAMESPACE_END
Definition XercesDefs.hpp:113
uint16_t XMLCh
Definition Xerces_autoconf_config.hpp:120
Receive notification of basic DTD-related events.
Definition DTDHandler.hpp:60
Receive notification of general document events.
Definition DocumentHandler.hpp:61
Basic interface for resolving entities.
Definition EntityResolver.hpp:87
Basic interface for SAX error handlers.
Definition ErrorHandler.hpp:61
A single input source for an XML entity.
Definition InputSource.hpp:63
Basic interface for SAX (Simple API for XML) parsers.
Definition Parser.hpp:61
Parser()
The default constructor.
Definition Parser.hpp:69
virtual void setDocumentHandler(DocumentHandler *const handler)=0
Allow an application to register a document event handler.
virtual void parse(const XMLCh *const systemId)=0
Parse an XML document from a system identifier (URI).
virtual void setEntityResolver(EntityResolver *const resolver)=0
Allow an application to register a custom entity resolver.
virtual void parse(const InputSource &source)=0
Parse an XML document.
virtual void parse(const char *const systemId)=0
Parse an XML document from a system identifier (URI).
virtual void setErrorHandler(ErrorHandler *const handler)=0
Allow an application to register an error event handler.
virtual ~Parser()
The destructor.
Definition Parser.hpp:73
virtual void setDTDHandler(DTDHandler *const handler)=0
Allow an application to register a DTD event handler.