xref: /aoo4110/main/idlc/inc/idlc/astparameter.hxx (revision b1cdbd2c)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef _IDLC_ASTPARAMETER_HXX_
25 #define _IDLC_ASTPARAMETER_HXX_
26 
27 #include <idlc/astmember.hxx>
28 
29 enum Direction { DIR_IN, DIR_OUT, DIR_INOUT };
30 
31 class AstParameter: public AstMember {
32 public:
AstParameter(Direction direction,bool rest,AstType const * type,rtl::OString const & name,AstScope * scope)33     AstParameter(
34         Direction direction, bool rest, AstType const * type,
35         rtl::OString const & name, AstScope * scope):
36         AstMember(NT_parameter, type, name, scope), m_direction(direction),
37         m_rest(rest) {}
38 
~AstParameter()39     virtual ~AstParameter() {}
40 
getDirection() const41     Direction getDirection() const { return m_direction; }
42 
isRest() const43     bool isRest() const { return m_rest; }
44 
45 private:
46     Direction m_direction;
47     bool m_rest;
48 };
49 
50 #endif
51