summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_type.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_type.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/TAO/TAO_IDL/be_include/be_type.h b/TAO/TAO_IDL/be_include/be_type.h
index 070353c6149..f1b16123b58 100644
--- a/TAO/TAO_IDL/be_include/be_type.h
+++ b/TAO/TAO_IDL/be_include/be_type.h
@@ -22,9 +22,6 @@
#ifndef BE_TYPE_H
#define BE_TYPE_H
-#include "be_decl.h"
-#include "ast_type.h"
-
class TAO_OutStream;
/*
@@ -45,7 +42,7 @@ public:
virtual ~be_type (void);
virtual int gen_var_defn (char *interface_local_name = 0);
- // generate the _var class definition.
+ // generate the _var class definition.
// generate the var definition. If <interface_name> is not 0, generate
// the var defn for that name. Otherwise, do it for the interface you
// are visiting (this).
@@ -54,7 +51,7 @@ public:
char *interface_full_name = 0);
// Generate the implementation for the _var class.
// If any one of the argument is 0, then use the name in <this>,
- // otherwise use the name given. Just making the class more useful.
+ // otherwise use the name given. Just making the class more useful.
virtual int gen_out_defn (char *interface_name = 0);
// Generate the out class definition. If <interface_name> is not 0,
@@ -63,7 +60,7 @@ public:
virtual int gen_out_impl (char *interface_local_name = 0,
char *interface_full_name = 0);
- // Generate the out class implementation.
+ // Generate the out class implementation.
// If any one of the argument is 0, then use the name giin this
// node, else use the arguments. );