summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_union/discriminant_ci.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_union/discriminant_ci.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_union/discriminant_ci.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_union/discriminant_ci.cpp54
1 files changed, 29 insertions, 25 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_union/discriminant_ci.cpp b/TAO/TAO_IDL/be/be_visitor_union/discriminant_ci.cpp
index 3e5a4ce5809..dbdc57ed3d1 100644
--- a/TAO/TAO_IDL/be/be_visitor_union/discriminant_ci.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_union/discriminant_ci.cpp
@@ -67,15 +67,15 @@ be_visitor_union_discriminant_ci::visit_enum (be_enum *node)
-1);
}
- *os << "// TAO_IDL - Generated from" << be_nl
+ *os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
if ((dv.computed_ != 0) && (bu->default_index () == -1))
{
- // only if all cases are not covered AND there is no explicit
- // default, we get the _default () method
- *os << "// the implicit _default () method" << be_nl;
- *os << "ACE_INLINE void " << be_nl
+ // Only if all cases are not covered AND there is no explicit
+ // default, we get the _default () method.
+ *os << "ACE_INLINE" << be_nl
+ << "void " << be_nl
<< bu->name () << "::_default ()" << be_nl
<< "{" << be_idt_nl
<< "this->disc_ = ";
@@ -102,25 +102,27 @@ be_visitor_union_discriminant_ci::visit_enum (be_enum *node)
// The function value_to_name() takes care of adding
// any necessary scoping to the output.
*os << node->value_to_name (dv.u.enum_val);
- *os << ";" << be_uidt_nl << "}\n\n";
+ *os << ";" << be_uidt_nl << "}" << be_nl << be_nl;
}
// the set method
- *os << "// accessor to set the discriminant" << be_nl
- << "ACE_INLINE void" << be_nl
+ *os << "// Accessor to set the discriminant." << be_nl
+ << "ACE_INLINE" << be_nl
+ << "void" << be_nl
<< bu->name () << "::_d (" << bt->name ()
<< " discval)" << be_nl
<< "{" << be_idt_nl
<< "this->disc_ = discval;" << be_uidt_nl
- << "}" << be_nl;
+ << "}" << be_nl << be_nl;
// the get method
- *os << "// accessor to get the discriminant" << be_nl
- << "ACE_INLINE " << bt->name () << be_nl
+ *os << "// Accessor to get the discriminant." << be_nl
+ << "ACE_INLINE" << be_nl
+ << bt->name () << be_nl
<< bu->name () << "::_d (void) const" << be_nl
<< "{" << be_idt_nl
<< "return this->disc_;" << be_uidt_nl
- << "}\n\n";
+ << "}";
return 0;
}
@@ -131,7 +133,8 @@ be_visitor_union_discriminant_ci::visit_predefined_type (
)
{
be_union *bu =
- this->ctx_->be_node_as_union (); // get the enclosing union backend
+ this->ctx_->be_node_as_union ();
+
be_type *bt;
if (this->ctx_->alias ())
@@ -157,7 +160,7 @@ be_visitor_union_discriminant_ci::visit_predefined_type (
-1);
}
- *os << "// TAO_IDL - Generated from" << be_nl
+ *os << be_nl << be_nl << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__ << be_nl << be_nl;
if ((dv.computed_ != 0) && (bu->default_index () == -1))
@@ -165,8 +168,8 @@ be_visitor_union_discriminant_ci::visit_predefined_type (
// Only if all cases are not covered AND there is no explicit
// default, we get the _default () method.
- *os << "// the implicit _default () method" << be_nl;
- *os << "ACE_INLINE void " << be_nl
+ *os << "ACE_INLINE" << be_nl
+ << "void " << be_nl
<< bu->name () << "::_default ()" << be_nl
<< "{" << be_idt_nl
<< "this->disc_ = ";
@@ -211,27 +214,28 @@ be_visitor_union_discriminant_ci::visit_predefined_type (
-1);
}
- *os << ";" << be_uidt_nl << "}\n\n";
+ *os << ";" << be_uidt_nl << "}";
}
- os->indent ();
-
// The set method.
- *os << "// accessor to set the discriminant" << be_nl
- << "ACE_INLINE void" << be_nl
+ *os << be_nl << be_nl
+ << "// Accessor to set the discriminant." << be_nl
+ << "ACE_INLINE" << be_nl
+ << "void" << be_nl
<< bu->name () << "::_d (" << bt->name ()
<< " discval)" << be_nl
<< "{" << be_idt_nl
<< "this->disc_ = discval;" << be_uidt_nl
- << "}" << be_nl;
+ << "}" << be_nl << be_nl;
// The get method.
- *os << "// accessor to get the discriminant" << be_nl
- << "ACE_INLINE " << bt->name () << be_nl
+ *os << "// Accessor to get the discriminant." << be_nl
+ << "ACE_INLINE" << be_nl
+ << bt->name () << be_nl
<< bu->name () << "::_d (void) const" << be_nl
<< "{" << be_idt_nl
<< "return this->disc_;" << be_uidt_nl
- << "}\n\n";
+ << "}";
return 0;
}