summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_attribute.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/ast_attribute.h')
-rw-r--r--TAO/TAO_IDL/include/ast_attribute.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/TAO/TAO_IDL/include/ast_attribute.h b/TAO/TAO_IDL/include/ast_attribute.h
index 6a5b10ce5d5..b8be84250cc 100644
--- a/TAO/TAO_IDL/include/ast_attribute.h
+++ b/TAO/TAO_IDL/include/ast_attribute.h
@@ -81,17 +81,13 @@ public:
bool local,
bool abstract);
- virtual ~AST_Attribute (void);
+ virtual ~AST_Attribute ();
// Data Accessors.
- bool readonly (void) const;
- UTL_ExceptList *get_get_exceptions (void) const;
- UTL_ExceptList *get_set_exceptions (void) const;
-
- // Narrowing.
-
- DEF_NARROW_FROM_DECL(AST_Attribute);
+ bool readonly () const;
+ UTL_ExceptList *get_get_exceptions () const;
+ UTL_ExceptList *get_set_exceptions () const;
// AST Dumping.
virtual void dump (ACE_OSTREAM_TYPE &o);
@@ -100,7 +96,7 @@ public:
virtual int ast_accept (ast_visitor *visitor);
// Cleanup.
- virtual void destroy (void);
+ virtual void destroy ();
// Methods to add exceptions directly, used when copying node.
UTL_ExceptList *be_add_get_exceptions (UTL_ExceptList *t);
@@ -123,7 +119,7 @@ private:
// Scope Management Protocol.
- friend int tao_yyparse (void);
+ friend int tao_yyparse ();
virtual UTL_NameList *fe_add_get_exceptions (UTL_NameList *e);
virtual UTL_NameList *fe_add_set_exceptions (UTL_NameList *e);
};