summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_native.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/ast_native.h')
-rw-r--r--TAO/TAO_IDL/include/ast_native.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/TAO/TAO_IDL/include/ast_native.h b/TAO/TAO_IDL/include/ast_native.h
index 7b831c8f419..719e2a67915 100644
--- a/TAO/TAO_IDL/include/ast_native.h
+++ b/TAO/TAO_IDL/include/ast_native.h
@@ -15,14 +15,24 @@
class TAO_IDL_FE_Export AST_Native : public virtual AST_Exception
{
public:
+ // Operations.
+
+ // Constructor(s).
+
+ AST_Native (void);
+ // Default constructor.
+
AST_Native (UTL_ScopedName *n);
+ // Constructor that initializes the scoped name.
virtual ~AST_Native (void);
+ // Destructor.
- // Cleanup.
virtual void destroy (void);
+ // Cleanup.
// Narrowing.
+
DEF_NARROW_FROM_DECL(AST_Native);
// AST Dumping.
@@ -30,8 +40,6 @@ public:
// Visiting.
virtual int ast_accept (ast_visitor *visitor);
-
- static AST_Decl::NodeType const NT;
};
#endif /* AST_NATIVE_H */