summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_component/facet_exh.cpp
diff options
context:
space:
mode:
authormsmit <msmit@remedy.nl>2010-10-22 07:46:01 +0000
committermsmit <msmit@remedy.nl>2010-10-22 07:46:01 +0000
commit987370a43183fd48e9f1b57bb6aa758878eebe79 (patch)
tree06ca42d93975608357a1aad38b451503e97db403 /TAO/TAO_IDL/be/be_visitor_component/facet_exh.cpp
parent23b02f876a384250006ea05e805856527c863c8d (diff)
downloadATCD-987370a43183fd48e9f1b57bb6aa758878eebe79.tar.gz
Fri Oct 22 07:50:54 UTC 2010 Marcel Smit <msmit@remedy.nl>
* TAO_IDL/be/be_visitor_component/executor_exh.cpp: * TAO_IDL/be/be_visitor_component/executor_exs.cpp: * TAO_IDL/be/be_visitor_component/facet_exh.cpp: * TAO_IDL/be_include/be_visitor_component/executor_exh.h: * TAO_IDL/be_include/be_visitor_component/facet_exh.h: Removed some more trailing whitespaces from the generated code. Added comment.
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_component/facet_exh.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_component/facet_exh.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_component/facet_exh.cpp b/TAO/TAO_IDL/be/be_visitor_component/facet_exh.cpp
index 3c36b94a950..4a02c627351 100644
--- a/TAO/TAO_IDL/be/be_visitor_component/facet_exh.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_component/facet_exh.cpp
@@ -14,7 +14,9 @@
be_visitor_facet_exh::be_visitor_facet_exh (
be_visitor_context *ctx)
- : be_visitor_component_scope (ctx)
+ : be_visitor_component_scope (ctx),
+ comment_border_ ("//=============================="
+ "==============================")
{
// This is initialized in the base class to svnt_export_macro()
// or skel_export_macro(), since there are many more visitor
@@ -49,6 +51,12 @@ be_visitor_facet_exh::visit_provides (be_provides *node)
const char *smart_scope = (is_global ? "" : "::");
os_ << be_nl_2
+ << comment_border_ << be_nl
+ << "// Provider Executor Implementation Class: "
+ << lname << "_exec_i" << be_nl
+ << comment_border_;
+
+ os_ << be_nl_2
<< "class " << export_macro_.c_str () << " "
<< lname << "_exec_i" << be_idt_nl
<< ": public virtual " << global << sname << "::CCM_"
@@ -106,7 +114,7 @@ be_visitor_facet_exh::visit_provides (be_provides *node)
<< smart_scope << c_scope->full_name () << "::CCM_"
<< this->node_->local_name ()
<< "_Context_var ciao_context_;" << be_uidt_nl
- << "};" << be_nl_2;
+ << "};";
return 0;
}