summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_argument.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/ast_argument.h')
-rw-r--r--TAO/TAO_IDL/include/ast_argument.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/include/ast_argument.h b/TAO/TAO_IDL/include/ast_argument.h
index 602be943cc9..abbf34a0a7b 100644
--- a/TAO/TAO_IDL/include/ast_argument.h
+++ b/TAO/TAO_IDL/include/ast_argument.h
@@ -84,10 +84,16 @@ public:
dir_INOUT = 0x04
};
+ // Operations.
+
+ // Constructor(s).
+ AST_Argument (void);
+
AST_Argument (Direction direction,
AST_Type *ft,
UTL_ScopedName *n);
+ // Destructor.
virtual ~AST_Argument (void);
// Data Accessors.
@@ -105,8 +111,6 @@ public:
// Cleanup.
virtual void destroy (void);
-
- static AST_Decl::NodeType const NT;
private:
const Direction pd_direction;