summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/ast/ast_argument.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/ast/ast_argument.cpp')
-rw-r--r--TAO/TAO_IDL/ast/ast_argument.cpp14
1 files changed, 5 insertions, 9 deletions
diff --git a/TAO/TAO_IDL/ast/ast_argument.cpp b/TAO/TAO_IDL/ast/ast_argument.cpp
index 877590c6827..7c4349d3824 100644
--- a/TAO/TAO_IDL/ast/ast_argument.cpp
+++ b/TAO/TAO_IDL/ast/ast_argument.cpp
@@ -70,10 +70,12 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
// Additionally they have a direction field which takes values
// from the enum AST_Argument::Direction.
-#include "idl.h"
-#include "idl_extern.h"
+#include "ast_argument.h"
+#include "ast_visitor.h"
-ACE_RCSID(ast, ast_argument, "$Id$")
+ACE_RCSID (ast,
+ ast_argument,
+ "$Id$")
// Static functions.
@@ -94,8 +96,6 @@ direction_to_string (AST_Argument::Direction d)
return 0;
}
-// Constructor(s) and destructor.
-
AST_Argument::AST_Argument (void)
: pd_direction (dir_IN)
{
@@ -117,8 +117,6 @@ AST_Argument::~AST_Argument (void)
{
}
-// Redefinition of inherited virtual operations.
-
// Dump this AST_Argument node to the ostream o.
void
AST_Argument::dump (ostream &o)
@@ -133,8 +131,6 @@ AST_Argument::ast_accept (ast_visitor *visitor)
return visitor->visit_argument (this);
}
-// Data accessors.
-
AST_Argument::Direction
AST_Argument::direction (void)
{