~ubuntu-branches/ubuntu/precise/xerces-c/precise

« back to all changes in this revision

Viewing changes to src/xercesc/validators/common/CMUnaryOp.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Jay Berkenbilt
  • Date: 2009-02-22 16:52:23 UTC
  • Revision ID: james.westby@ubuntu.com-20090222165223-klimp8u8m73yn9zp
Tags: upstream-3.0.1
ImportĀ upstreamĀ versionĀ 3.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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: CMUnaryOp.hpp 677396 2008-07-16 19:36:20Z amassari $
 
20
 */
 
21
 
 
22
#if !defined(XERCESC_INCLUDE_GUARD_CMUNARYOP_HPP)
 
23
#define XERCESC_INCLUDE_GUARD_CMUNARYOP_HPP
 
24
 
 
25
#include <xercesc/validators/common/CMNode.hpp>
 
26
 
 
27
 
 
28
XERCES_CPP_NAMESPACE_BEGIN
 
29
 
 
30
class CMStateSet;
 
31
 
 
32
class CMUnaryOp : public CMNode
 
33
{
 
34
public :
 
35
    // -----------------------------------------------------------------------
 
36
    //  Constructors and Destructor
 
37
    // -----------------------------------------------------------------------
 
38
    CMUnaryOp
 
39
    (
 
40
          ContentSpecNode::NodeTypes    type
 
41
        , CMNode* const                 nodeToAdopt
 
42
        , unsigned int                  maxStates
 
43
        , MemoryManager* const          manager = XMLPlatformUtils::fgMemoryManager
 
44
    );
 
45
    ~CMUnaryOp();
 
46
 
 
47
 
 
48
    // -----------------------------------------------------------------------
 
49
    //  Getter methods
 
50
    // -----------------------------------------------------------------------
 
51
    const CMNode* getChild() const;
 
52
    CMNode* getChild();
 
53
 
 
54
 
 
55
    // -----------------------------------------------------------------------
 
56
    //  Implementation of the public CMNode virtual interface
 
57
    // -----------------------------------------------------------------------
 
58
    virtual void orphanChild();
 
59
 
 
60
 
 
61
protected :
 
62
    // -----------------------------------------------------------------------
 
63
    //  Implementation of the protected CMNode virtual interface
 
64
    // -----------------------------------------------------------------------
 
65
    void calcFirstPos(CMStateSet& toSet) const;
 
66
    void calcLastPos(CMStateSet& toSet) const;
 
67
 
 
68
 
 
69
private :
 
70
    // -----------------------------------------------------------------------
 
71
    //  Private data members
 
72
    //
 
73
    //  fChild
 
74
    //      This is the reference to the one child that we have for this
 
75
    //      unary operation. We own it.
 
76
    // -----------------------------------------------------------------------
 
77
    CMNode*     fChild;
 
78
 
 
79
    // -----------------------------------------------------------------------
 
80
    //  Unimplemented constructors and operators
 
81
    // -----------------------------------------------------------------------
 
82
    CMUnaryOp(const CMUnaryOp&);
 
83
    CMUnaryOp& operator=(const CMUnaryOp&);
 
84
};
 
85
 
 
86
XERCES_CPP_NAMESPACE_END
 
87
 
 
88
#endif