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.h25
1 files changed, 10 insertions, 15 deletions
diff --git a/TAO/TAO_IDL/include/ast_native.h b/TAO/TAO_IDL/include/ast_native.h
index f1ae461def4..efd5d54f112 100644
--- a/TAO/TAO_IDL/include/ast_native.h
+++ b/TAO/TAO_IDL/include/ast_native.h
@@ -4,36 +4,31 @@
#ifndef _AST_NATIVE_H_
#define _AST_NATIVE_H_
-// Representation of "native" IDL type added by the POA spec
-//
-/*
-** DEPENDENCIES: ast_decl.h
-**
-** USE: Included from ast.h
-*/
+// Representation of "native" IDL type added by the POA spec.
class TAO_IDL_FE_Export AST_Native : public virtual AST_Type
{
public:
- // =Operations
+ // Operations.
+
+ // Constructor(s).
- // Constructor(s)
AST_Native (void);
- // default constructor
+ // Default constructor.
AST_Native (UTL_ScopedName *n,
UTL_StrList *p);
- // constructor that initializes its scoped name
+ // Constructor that initializes the scoped name.
virtual ~AST_Native (void);
- // destructor
+ // Destructor.
- // Narrowing
+ // Narrowing.
DEF_NARROW_METHODS1(AST_Native, AST_Type);
DEF_NARROW_FROM_DECL(AST_Native);
- // AST Dumping
- virtual void dump(ostream &o);
+ // AST Dumping.
+ virtual void dump(ostream &o);
};
#endif /* AST_NATIVE_H */