SourceForge.net Logo
DOMImplementationLS.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: DOMImplementationLS.hpp 932889 2010-04-11 13:10:10Z borisk $
20  */
21 
22 #if !defined(XERCESC_INCLUDE_GUARD_DOMIMPLEMENTATIONLS_HPP)
23 #define XERCESC_INCLUDE_GUARD_DOMIMPLEMENTATIONLS_HPP
24 
26 
27 XERCES_CPP_NAMESPACE_BEGIN
28 
29 
30 class DOMLSParser;
31 class DOMLSSerializer;
32 class DOMLSInput;
33 class DOMLSOutput;
34 class MemoryManager;
35 class XMLGrammarPool;
36 
49 class CDOM_EXPORT DOMImplementationLS
50 {
51 protected:
52  // -----------------------------------------------------------------------
53  // Hidden constructors
54  // -----------------------------------------------------------------------
59 
60 private:
61  // -----------------------------------------------------------------------
62  // Unimplemented constructors and operators
63  // -----------------------------------------------------------------------
67  DOMImplementationLS & operator = (const DOMImplementationLS &);
69 
70 public:
71  // -----------------------------------------------------------------------
72  // All constructors are hidden, just the destructor is available
73  // -----------------------------------------------------------------------
80  virtual ~DOMImplementationLS() {};
82 
83  // -----------------------------------------------------------------------
84  // Public constants
85  // -----------------------------------------------------------------------
95  {
96  MODE_SYNCHRONOUS = 1,
97  MODE_ASYNCHRONOUS = 2
98  };
100 
101  // -----------------------------------------------------------------------
102  // Virtual DOMImplementationLS interface
103  // -----------------------------------------------------------------------
106  // -----------------------------------------------------------------------
107  // Factory create methods
108  // -----------------------------------------------------------------------
141  virtual DOMLSParser* createLSParser(const DOMImplementationLSMode mode,
142  const XMLCh* const schemaType,
143  MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager,
144  XMLGrammarPool* const gramPool = 0) = 0;
145 
146 
156  virtual DOMLSSerializer* createLSSerializer(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) = 0;
157 
166  virtual DOMLSInput* createLSInput(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) = 0;
167 
176  virtual DOMLSOutput* createLSOutput(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) = 0;
178 };
179 
180 
181 XERCES_CPP_NAMESPACE_END
182 
183 #endif
Configurable memory manager.
Definition: MemoryManager.hpp:39
DOMImplementationLS()
Definition: DOMImplementationLS.hpp:57
This interface represents an output destination for data.
Definition: DOMLSOutput.hpp:39
Definition: DOMImplementationLS.hpp:49
DOMImplementationLSMode
Create a synchronous or an asynchronous DOMLSParser.
Definition: DOMImplementationLS.hpp:94
Definition: DOMLSSerializer.hpp:275
This interface represents a single input source for an XML entity.
Definition: DOMLSInput.hpp:59
DOMLSParser provides an API for parsing XML documents and building the corresponding DOM document tre...
Definition: DOMLSParser.hpp:47
virtual ~DOMImplementationLS()
Destructor.
Definition: DOMImplementationLS.hpp:80