summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_helper.h
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-01 13:49:23 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-01 13:49:23 +0000
commit0155b2254e16d6c9e5d0b6c0c101de84e4fe432f (patch)
tree3b973276984c17f2240b1724fe1c92026081e981 /TAO/TAO_IDL/be_include/be_helper.h
parent23696f26059dd5f33b655db7be60db00400ba408 (diff)
downloadATCD-0155b2254e16d6c9e5d0b6c0c101de84e4fe432f.tar.gz
ChangeLogTag: Mon Jul 1 08:31:04 2002 Jeff Parsons <parsons@cs.wustl.edu>
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_helper.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_helper.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/be_include/be_helper.h b/TAO/TAO_IDL/be_include/be_helper.h
index cb0a911e2f9..b2caf8864e6 100644
--- a/TAO/TAO_IDL/be_include/be_helper.h
+++ b/TAO/TAO_IDL/be_include/be_helper.h
@@ -23,6 +23,12 @@
#ifndef TAO_BE_OUTSTRM_H
#define TAO_BE_OUTSTRM_H
+#include "ace/CDR_Base.h"
+
+class Identifier;
+class UTL_IdList;
+class AST_Expression;
+
// a dummy structure to inform TAO_OutStream's << operator to put a newline
// and use the current indentation for the succeeding line
struct TAO_NL
@@ -102,7 +108,7 @@ public:
// destructor.
int open (const char *fname,
- TAO_OutStream::STREAM_TYPE st=TAO_OutStream::TAO_CLI_HDR);
+ TAO_OutStream::STREAM_TYPE st = TAO_OutStream::TAO_CLI_HDR);
// open the underlying low-level handle for output.
void stream_type (TAO_OutStream::STREAM_TYPE);
@@ -114,11 +120,11 @@ public:
FILE *file (void);
// Return the underlying lowlevel file pointer.
- int incr_indent (unsigned short flag=1);
+ int incr_indent (unsigned short flag = 1);
// increment the indentation level and by default actually indent the output
// accordingly
- int decr_indent (unsigned short flag=1);
+ int decr_indent (unsigned short flag = 1);
// decrease the indentation level and by default actually indent the output
// accordingly
@@ -134,7 +140,8 @@ public:
int print (const char *format, ...);
// "printf" style variable argument print
- int gen_ifdef_macro (const char *flat_name, const char *suffix=0);
+ int gen_ifdef_macro (const char *flat_name,
+ const char *suffix = 0);
// generate a #if !defined, #defined macro
int gen_endif (void);
@@ -205,7 +212,6 @@ protected:
int indent_level_;
// indentation level
-
};
#endif // if !defined