source: obsolete/tags/VUT/0.4/GtpVisibilityPreprocessor/support/xerces/include/xercesc/validators/schema/identity/XPathSymbols.hpp @ 358

Revision 358, 2.4 KB checked in by bittner, 19 years ago (diff)

xerces added

Line 
1/*
2 * Copyright 2001,2004 The Apache Software Foundation.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 * $Id: XPathSymbols.hpp,v 1.5 2004/09/08 13:56:59 peiyongz Exp $
19 */
20
21#if !defined(XPATHSYMBOLS_HPP)
22#define XPATHSYMBOLS_HPP
23
24#include <xercesc/util/XercesDefs.hpp>
25
26XERCES_CPP_NAMESPACE_BEGIN
27
28/*
29 * Collection of symbols used to parse a Schema Grammar
30 */
31
32class VALIDATORS_EXPORT XPathSymbols
33{
34public :
35    // -----------------------------------------------------------------------
36    // Constant data
37    // -----------------------------------------------------------------------
38    static const XMLCh fgSYMBOL_AND[];
39    static const XMLCh fgSYMBOL_OR[];
40    static const XMLCh fgSYMBOL_MOD[];
41    static const XMLCh fgSYMBOL_DIV[];
42    static const XMLCh fgSYMBOL_COMMENT[];
43    static const XMLCh fgSYMBOL_TEXT[];
44    static const XMLCh fgSYMBOL_PI[];
45    static const XMLCh fgSYMBOL_NODE[];
46    static const XMLCh fgSYMBOL_ANCESTOR[];
47    static const XMLCh fgSYMBOL_ANCESTOR_OR_SELF[];
48    static const XMLCh fgSYMBOL_ATTRIBUTE[];
49    static const XMLCh fgSYMBOL_CHILD[];
50    static const XMLCh fgSYMBOL_DESCENDANT[];
51    static const XMLCh fgSYMBOL_DESCENDANT_OR_SELF[];
52    static const XMLCh fgSYMBOL_FOLLOWING[];
53    static const XMLCh fgSYMBOL_FOLLOWING_SIBLING[];
54    static const XMLCh fgSYMBOL_NAMESPACE[];
55    static const XMLCh fgSYMBOL_PARENT[];
56    static const XMLCh fgSYMBOL_PRECEDING[];
57    static const XMLCh fgSYMBOL_PRECEDING_SIBLING[];
58    static const XMLCh fgSYMBOL_SELF[];
59
60private:
61    // -----------------------------------------------------------------------
62    //  Unimplemented constructors and operators
63    // -----------------------------------------------------------------------
64    XPathSymbols();
65};
66
67XERCES_CPP_NAMESPACE_END
68
69#endif
70
71/**
72  * End of file XPathSymbols.hpp
73  */
74
Note: See TracBrowser for help on using the repository browser.