summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_obv_cs.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 10:24:02 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 10:24:02 +0000
commit477288d05c88897a9811f546ca2b5c66e12cb80f (patch)
tree541fc2e72cd6f4977352d461d2094173fb4e9c41 /TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_obv_cs.cpp
parentffb3a0eb1b420b865cdb0ca3330790327eda5c50 (diff)
downloadATCD-477288d05c88897a9811f546ca2b5c66e12cb80f.tar.gz
ChangeLogTag: Wed Apr 19 07:44:49 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_obv_cs.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_obv_cs.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_obv_cs.cpp b/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_obv_cs.cpp
index a80620b57f3..9a77076dcfd 100644
--- a/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_obv_cs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_obv_cs.cpp
@@ -67,8 +67,8 @@ be_visitor_valuetype_obv_cs::visit_valuetype (be_valuetype *node)
*os << node->local_name () << " (void)" << be_nl
<< "{}" << be_nl << be_nl;
-
- // Initializing constructor.
+
+ // Initializing constructor.
if (node->has_member ())
{
*os << node->full_obv_skel_name () << "::";
@@ -79,16 +79,16 @@ be_visitor_valuetype_obv_cs::visit_valuetype (be_valuetype *node)
}
*os << node->local_name () << " (" << be_idt << be_idt;
-
- unsigned long index = 0;
+
+ unsigned long index = 0;
this->gen_obv_init_constructor_args (node, index);
*os << be_uidt_nl
<< ")" << be_uidt << be_uidt_nl
<< "{" << be_idt;
-
+
this->gen_obv_init_constructor_inits (node);
-
+
*os << be_uidt_nl
<< "}" << be_nl << be_nl;
}
@@ -143,7 +143,7 @@ be_visitor_valuetype_obv_cs::visit_valuetype (be_valuetype *node)
<< node->full_obv_skel_name ()
<< "::_add_ref (void)" << be_nl
<< "{" << be_idt_nl
- << "this->ACE_NESTED_CLASS ( ::CORBA,DefaultValueRefCountBase)::_add_ref ();"
+ << "this->::CORBA::DefaultValueRefCountBase::_add_ref ();"
<< be_uidt_nl
<< "}" << be_nl;
@@ -151,7 +151,7 @@ be_visitor_valuetype_obv_cs::visit_valuetype (be_valuetype *node)
<< node->full_obv_skel_name ()
<< "::_remove_ref (void)" << be_nl
<< "{" << be_idt_nl
- << "this->ACE_NESTED_CLASS ( ::CORBA,DefaultValueRefCountBase)::_remove_ref ();"
+ << "this->::CORBA::DefaultValueRefCountBase::_remove_ref ();"
<< be_uidt_nl
<< "}";
}
@@ -193,7 +193,7 @@ be_visitor_valuetype_obv_cs::gen_obv_init_base_constructor_args (
{
TAO_OutStream *os = this->ctx_->stream ();
AST_ValueType *parent = node->inherits_concrete ();
-
+
// Generate for inherited members first.
if (parent != 0)
{