1 // This may look like C, but it's really -*- C++ -*-
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
52 Sun, Sun Microsystems and the Sun logo are trademarks or registered
53 trademarks of Sun Microsystems, Inc.
57 Mountain View, California 94043
61 SunOS, SunSoft, Sun, Solaris, Sun Microsystems or the Sun logo are
62 trademarks or registered trademarks of Sun Microsystems, Inc.
71 // Defines the classes which constitute the agreement between the CFE
77 ** USE: Included from idl.hh
80 // This is to remove "inherits via dominance" warnings from MSVC.
83 # pragma warning (disable : 4250)
86 #include "ast_visitor.h" // abstract class ast_visitor
88 #include "utl_scoped_name.h" // Define UTL_ScopedName
90 #include "ast_decl.h" // class AST_Decl
92 #include "ast_expression.h" // class AST_Expression
94 #include "utl_scope.h" // class UTL_Scope
96 #include "ast_type.h" // class AST_Type
97 #include "ast_concrete_type.h" // class AST_ConcreteType
98 #include "ast_predefined_type.h" // class AST_PredefinedType
99 #include "ast_module.h" // class AST_Module
100 #include "ast_root.h" // class AST_Root
101 #include "ast_interface.h" // class AST_Interface
102 #include "ast_interface_fwd.h" // class AST_InterfaceFwd
103 #include "ast_component.h" // class AST_Component
104 #include "ast_structure.h" // class AST_Structure
105 #include "ast_exception.h" // class AST_Exception
106 #include "ast_enum.h" // class AST_Enum
107 #include "ast_operation.h" // class AST_Operation
108 #include "ast_field.h" // class AST_Field
109 #include "ast_argument.h" // class AST_Argument
110 #include "ast_attribute.h" // class AST_Attribute
111 #include "ast_union.h" // class AST_Union
112 #include "ast_union_branch.h" // class AST_UnionBranch
113 #include "ast_union_label.h" // class AST_UnionLabel
114 #include "ast_constant.h" // class AST_Constant
115 #include "ast_enum_val.h" // class AST_EnumVal
116 #include "ast_array.h" // class AST_Array
117 #include "ast_sequence.h" // class AST_Sequence
118 #include "ast_string.h" // class AST_String
119 #include "ast_typedef.h" // class AST_Typedef
120 #include "ast_native.h" // class AST_Native
121 #include "ast_factory.h" // class AST_Factory
123 #include "utl_list.h" // class UTL_List
124 #include "utl_strlist.h" // class UTL_StrList
125 #include "utl_exprlist.h" // class UTL_ExprList
127 #include "ast_generator.h" // class AST_Generator
129 #if defined(_MSC_VER)
131 #endif /* _MSC_VER */
133 #endif // _AST_AST_HH