summaryrefslogtreecommitdiff
path: root/trunk/TAO/TAO_IDL/be/be_visitor_valuebox/cdr_op_ch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/TAO_IDL/be/be_visitor_valuebox/cdr_op_ch.cpp')
-rw-r--r--trunk/TAO/TAO_IDL/be/be_visitor_valuebox/cdr_op_ch.cpp66
1 files changed, 66 insertions, 0 deletions
diff --git a/trunk/TAO/TAO_IDL/be/be_visitor_valuebox/cdr_op_ch.cpp b/trunk/TAO/TAO_IDL/be/be_visitor_valuebox/cdr_op_ch.cpp
new file mode 100644
index 00000000000..cd35ccf737b
--- /dev/null
+++ b/trunk/TAO/TAO_IDL/be/be_visitor_valuebox/cdr_op_ch.cpp
@@ -0,0 +1,66 @@
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// cdr_op_ch.cpp
+//
+// = DESCRIPTION
+// Concrete visitor for valueboxes.
+// This one provides code generation for the CDR operators.
+//
+// = AUTHOR
+// Gary Maxey
+//
+// ============================================================================
+
+ACE_RCSID (be_visitor_valuebox,
+ cdr_op_ch,
+ "$Id$")
+
+be_visitor_valuebox_cdr_op_ch::be_visitor_valuebox_cdr_op_ch (
+ be_visitor_context *ctx
+ )
+ : be_visitor_valuebox (ctx)
+{
+}
+
+be_visitor_valuebox_cdr_op_ch::~be_visitor_valuebox_cdr_op_ch (void)
+{
+}
+
+int
+be_visitor_valuebox_cdr_op_ch::visit_valuebox (be_valuebox *node)
+{
+ if (node->imported ()
+ || node->cli_hdr_cdr_op_gen ())
+ {
+ return 0;
+ }
+
+ TAO_OutStream *os = this->ctx_->stream ();
+
+ *os << be_nl << be_nl
+ << "// TAO_IDL - Generated from" << be_nl
+ << "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
+
+ *os << be_global->core_versioning_begin () << be_nl;
+
+ *os << be_global->stub_export_macro () << " "
+ << "::CORBA::Boolean operator<< (TAO_OutputCDR &, const "
+ << node->full_name () << " *);" << be_nl;
+
+ *os << be_global->stub_export_macro () << " "
+ << "::CORBA::Boolean operator>> (TAO_InputCDR &, "
+ << node->full_name () << " *&);";
+
+ *os << be_global->core_versioning_end () << be_nl;
+
+ node->cli_hdr_cdr_op_gen (1);
+ return 0;
+}