Xerces-C++  3.1.2
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: Parser.hpp 527149 2007-04-10 14:56:39Z amassari $
20  */
21 
22 #if !defined(XERCESC_INCLUDE_GUARD_PARSER_HPP)
23 #define XERCESC_INCLUDE_GUARD_PARSER_HPP
24 
26 
28 
29 class DTDHandler;
30 class EntityResolver;
31 class DocumentHandler;
32 class ErrorHandler;
33 class InputSource;
34 
59 
61 {
62 public:
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 
235 private :
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
Receive notification of general document events.
Definition: DocumentHandler.hpp:60
virtual ~Parser()
The destructor.
Definition: Parser.hpp:73
#define SAX_EXPORT
Definition: XercesDefs.hpp:164
Receive notification of basic DTD-related events.
Definition: DTDHandler.hpp:59
Basic interface for resolving entities.
Definition: EntityResolver.hpp:86
Basic interface for SAX error handlers.
Definition: ErrorHandler.hpp:60
Parser()
The default constructor.
Definition: Parser.hpp:69
#define XERCES_CPP_NAMESPACE_BEGIN
Definition: XercesDefs.hpp:112
wchar_t XMLCh
Definition: Xerces_autoconf_config.borland.hpp:92
#define XERCES_CPP_NAMESPACE_END
Definition: XercesDefs.hpp:113
Basic interface for SAX (Simple API for XML) parsers.
Definition: Parser.hpp:60
A single input source for an XML entity.
Definition: InputSource.hpp:62