summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_field.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/ast_field.h')
-rw-r--r--TAO/TAO_IDL/include/ast_field.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/include/ast_field.h b/TAO/TAO_IDL/include/ast_field.h
index a6583ee3ec0..20df9f68fe3 100644
--- a/TAO/TAO_IDL/include/ast_field.h
+++ b/TAO/TAO_IDL/include/ast_field.h
@@ -90,20 +90,18 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
class AST_Field : public virtual AST_Decl
{
public:
- enum Visibility {vis_NA, vis_PUBLIC, vis_PRIVATE};
// Operations
// Constructor(s)
AST_Field();
AST_Field(AST_Type *field_type,
- UTL_ScopedName *n, UTL_StrList *p, Visibility vis = vis_NA);
+ UTL_ScopedName *n, UTL_StrList *p);
AST_Field(AST_Decl::NodeType nt, AST_Type *field_type,
- UTL_ScopedName *n, UTL_StrList *p, Visibility vis = vis_NA);
+ UTL_ScopedName *n, UTL_StrList *p);
virtual ~AST_Field() {}
// Data Accessors
AST_Type *field_type();
- Visibility visibility();
// Narrowing
DEF_NARROW_METHODS1(AST_Field, AST_Decl);
@@ -115,7 +113,7 @@ public:
private:
// Data
AST_Type *pd_field_type; // Base type for field
- Visibility pd_visibility;
+
};
#endif // _AST_FIELD_AST_FIELD_HH