Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / TAO_IDL / include / ast_attribute.h
blob6a5b10ce5d5108c3fb2d605b6cdcc9c8b9bec831
1 // This may look like C, but it's really -*- C++ -*-
2 /*
4 COPYRIGHT
6 Copyright 1992, 1993, 1994 Sun Microsystems, Inc. Printed in the United
7 States of America. All Rights Reserved.
9 This product is protected by copyright and distributed under the following
10 license restricting its use.
12 The Interface Definition Language Compiler Front End (CFE) is made
13 available for your use provided that you include this license and copyright
14 notice on all media and documentation and the software program in which
15 this product is incorporated in whole or part. You may copy and extend
16 functionality (but may not remove functionality) of the Interface
17 Definition Language CFE without charge, but you are not authorized to
18 license or distribute it to anyone else except as part of a product or
19 program developed by you or with the express written consent of Sun
20 Microsystems, Inc. ("Sun").
22 The names of Sun Microsystems, Inc. and any of its subsidiaries or
23 affiliates may not be used in advertising or publicity pertaining to
24 distribution of Interface Definition Language CFE as permitted herein.
26 This license is effective until terminated by Sun for failure to comply
27 with this license. Upon termination, you shall destroy or return all code
28 and documentation for the Interface Definition Language CFE.
30 INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED AS IS WITH NO WARRANTIES OF
31 ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS
32 FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR ARISING FROM A COURSE OF
33 DEALING, USAGE OR TRADE PRACTICE.
35 INTERFACE DEFINITION LANGUAGE CFE IS PROVIDED WITH NO SUPPORT AND WITHOUT
36 ANY OBLIGATION ON THE PART OF Sun OR ANY OF ITS SUBSIDIARIES OR AFFILIATES
37 TO ASSIST IN ITS USE, CORRECTION, MODIFICATION OR ENHANCEMENT.
39 SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES SHALL HAVE NO LIABILITY WITH
40 RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY
41 INTERFACE DEFINITION LANGUAGE CFE OR ANY PART THEREOF.
43 IN NO EVENT WILL SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE LIABLE FOR
44 ANY LOST REVENUE OR PROFITS OR OTHER SPECIAL, INDIRECT AND CONSEQUENTIAL
45 DAMAGES, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
47 Use, duplication, or disclosure by the government is subject to
48 restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in
49 Technical Data and Computer Software clause at DFARS 252.227-7013 and FAR
50 52.227-19.
52 Sun, Sun Microsystems and the Sun logo are trademarks or registered
53 trademarks of Sun Microsystems, Inc.
55 SunSoft, Inc.
56 2550 Garcia Avenue
57 Mountain View, California 94043
59 NOTE:
61 SunOS, SunSoft, Sun, Solaris, Sun Microsystems or the Sun logo are
62 trademarks or registered trademarks of Sun Microsystems, Inc.
66 #ifndef _AST_ATTRIBUTE_AST_ATTRIBUTE_HH
67 #define _AST_ATTRIBUTE_AST_ATTRIBUTE_HH
69 #include "ast_field.h"
70 #include "utl_scoped_name.h"
72 class UTL_ExceptList;
73 class UTL_NameList;
75 class TAO_IDL_FE_Export AST_Attribute : public virtual AST_Field
77 public:
78 AST_Attribute (bool readonly,
79 AST_Type *ft,
80 UTL_ScopedName *n,
81 bool local,
82 bool abstract);
84 virtual ~AST_Attribute (void);
86 // Data Accessors.
88 bool readonly (void) const;
89 UTL_ExceptList *get_get_exceptions (void) const;
90 UTL_ExceptList *get_set_exceptions (void) const;
92 // Narrowing.
94 DEF_NARROW_FROM_DECL(AST_Attribute);
96 // AST Dumping.
97 virtual void dump (ACE_OSTREAM_TYPE &o);
99 // Visiting.
100 virtual int ast_accept (ast_visitor *visitor);
102 // Cleanup.
103 virtual void destroy (void);
105 // Methods to add exceptions directly, used when copying node.
106 UTL_ExceptList *be_add_get_exceptions (UTL_ExceptList *t);
107 UTL_ExceptList *be_add_set_exceptions (UTL_ExceptList *t);
109 static AST_Decl::NodeType const NT;
111 virtual bool annotatable () const;
113 private:
114 // Data.
116 const bool pd_readonly;
117 // Is attribute read-only?
119 UTL_ExceptList *pd_get_exceptions;
120 UTL_ExceptList *pd_set_exceptions;
122 // Operations.
124 // Scope Management Protocol.
126 friend int tao_yyparse (void);
127 virtual UTL_NameList *fe_add_get_exceptions (UTL_NameList *e);
128 virtual UTL_NameList *fe_add_set_exceptions (UTL_NameList *e);
131 #endif // _AST_ATTRIBUTE_AST_ATTRIBUTE_HH