Xerces-C++  3.1.2
PSVIHandler.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: PSVIHandler.hpp 676796 2008-07-15 05:04:13Z dbertoni $
20  */
21 
22 #if !defined(XERCESC_INCLUDE_GUARD_PSVIHANDLER_HPP)
23 #define XERCESC_INCLUDE_GUARD_PSVIHANDLER_HPP
24 
25 
27 
28 
29 class PSVIElement;
30 class PSVIAttributeList;
31 
32 
39 {
40 public:
41  // -----------------------------------------------------------------------
42  // Constructors are hidden, just the virtual destructor is exposed
43  // -----------------------------------------------------------------------
46  virtual ~PSVIHandler()
47  {
48  }
50 
63  virtual void handleElementPSVI
64  (
65  const XMLCh* const localName
66  , const XMLCh* const uri
67  , PSVIElement * elementInfo
68  ) = 0;
69 
92  virtual void handlePartialElementPSVI
93  (
94  const XMLCh* const localName
95  , const XMLCh* const uri
96  , PSVIElement * elementInfo
97  );
98 
110  virtual void handleAttributesPSVI
111  (
112  const XMLCh* const localName
113  , const XMLCh* const uri
114  , PSVIAttributeList * psviAttributes
115  ) = 0;
116 
117 
119 
120 
121 
122 protected :
123  // -----------------------------------------------------------------------
124  // Hidden Constructors
125  // -----------------------------------------------------------------------
127  {
128  }
129 
130 
131 private:
132  // -----------------------------------------------------------------------
133  // Unimplemented constructors and operators
134  // -----------------------------------------------------------------------
135  PSVIHandler(const PSVIHandler&);
136  PSVIHandler& operator=(const PSVIHandler&);
137 };
138 
139 inline void PSVIHandler::handlePartialElementPSVI(const XMLCh* const /*localName*/
140  , const XMLCh* const /*uri*/
141  , PSVIElement * /*elementInfo*/
142  )
143 {
144 }
145 
147 
148 #endif
virtual ~PSVIHandler()
Definition: PSVIHandler.hpp:46
virtual void handlePartialElementPSVI(const XMLCh *const localName, const XMLCh *const uri, PSVIElement *elementInfo)
Receive notification of partial PSVI properties of an element.
Definition: PSVIHandler.hpp:139
#define XMLPARSER_EXPORT
Definition: XercesDefs.hpp:163
PSVIHandler()
Definition: PSVIHandler.hpp:126
Definition: PSVIElement.hpp:41
This abstract class provides the interface for the scanner to return PSVI information to the applicat...
Definition: PSVIHandler.hpp:38
Definition: PSVIAttributeList.hpp:59
#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