Xerces-C++  3.1.3
Wrapper4InputSource.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: Wrapper4InputSource.hpp 932887 2010-04-11 13:04:59Z borisk $
20  */
21 
22 #if !defined(XERCESC_INCLUDE_GUARD_WRAPPER4INPUTSOURCE_HPP)
23 #define XERCESC_INCLUDE_GUARD_WRAPPER4INPUTSOURCE_HPP
24 
27 
29 
30 class InputSource;
31 
32 
37 {
38 public:
41 
53  Wrapper4InputSource(InputSource* const inputSource
54  , const bool adoptFlag = true
56 
61  virtual ~Wrapper4InputSource();
63 
64 
65  // -----------------------------------------------------------------------
72  virtual const XMLCh* getStringData() const;
73 
82  virtual InputSource* getByteStream() const;
84 
85  // -----------------------------------------------------------------------
98  virtual const XMLCh* getEncoding() const;
99 
100 
108  const XMLCh* getPublicId() const;
109 
110 
120  const XMLCh* getSystemId() const;
121 
132  const XMLCh* getBaseURI() const;
133 
142  bool getIssueFatalErrorIfNotFound() const;
143 
145 
146 
147  // -----------------------------------------------------------------------
154  virtual void setStringData(const XMLCh* data);
155 
160  virtual void setByteStream(InputSource* stream);
161 
174  void setEncoding(const XMLCh* const encodingStr);
175 
176 
189  void setPublicId(const XMLCh* const publicId);
190 
206  void setSystemId(const XMLCh* const systemId);
207 
218  void setBaseURI(const XMLCh* const baseURI);
219 
232  void setIssueFatalErrorIfNotFound(bool flag);
233 
240  void release();
241 
243 
244 
245 private:
246  // -----------------------------------------------------------------------
247  // Unimplemented constructors and operators
248  // -----------------------------------------------------------------------
250  Wrapper4InputSource& operator=(const Wrapper4InputSource&);
251 
252  // -----------------------------------------------------------------------
253  // Private data members
254  // -----------------------------------------------------------------------
255  bool fAdoptInputSource;
256  InputSource* fInputSource;
257 };
258 
259 
260 // ---------------------------------------------------------------------------
261 // Wrapper4InputSource: Getter methods
262 // ---------------------------------------------------------------------------
264 {
265  return 0; // REVISIT - should we return an empty string?
266 }
267 
269 {
270  return 0;
271 }
272 
273 // ---------------------------------------------------------------------------
274 // Wrapper4InputSource: Setter methods
275 // ---------------------------------------------------------------------------
276 inline void Wrapper4InputSource::setBaseURI(const XMLCh* const)
277 {
278 }
279 
281 {
282 }
283 
285 {
286 }
287 
289 
290 #endif