summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_structure/cdr_op_ch.cpp
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-09-25 16:25:39 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-09-25 16:25:39 +0000
commit74e496c02eed5efc93bff0d14b2e39ac63f996d7 (patch)
treed8c088424cc4d957360cb3b13bfc4f0d2ae21dfa /TAO/TAO_IDL/be/be_visitor_structure/cdr_op_ch.cpp
parentc7acd0e9fc7ae6e83664ca0022ee1e58d798954d (diff)
downloadATCD-74e496c02eed5efc93bff0d14b2e39ac63f996d7.tar.gz
ChangeLogTag: Wed Sep 25 11:12:59 2002 Jeff Parsons <parsons@cs.wustl.edu>
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_structure/cdr_op_ch.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_structure/cdr_op_ch.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_structure/cdr_op_ch.cpp b/TAO/TAO_IDL/be/be_visitor_structure/cdr_op_ch.cpp
index 4185d0e2669..3aca186bbb9 100644
--- a/TAO/TAO_IDL/be/be_visitor_structure/cdr_op_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_structure/cdr_op_ch.cpp
@@ -50,15 +50,15 @@ be_visitor_structure_cdr_op_ch::visit_structure (be_structure *node)
TAO_OutStream *os = this->ctx_->stream ();
- // Generate the CDR << and >> operator declarations.
- os->indent ();
+ *os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
+ << "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
*os << be_global->stub_export_macro () << " CORBA::Boolean"
<< " operator<< (TAO_OutputCDR &, const " << node->name ()
<< " &);" << be_nl;
*os << be_global->stub_export_macro () << " CORBA::Boolean"
<< " operator>> (TAO_InputCDR &, "
- << node->name () << " &);\n";
+ << node->name () << " &);";
// Set the substate as generating code for the types defined in our scope.