summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_arg_traits.cpp
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-04-22 15:04:27 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-04-22 15:04:27 +0000
commite333ff0d1bd92ea0f73692e6c601d0fdfe99fbae (patch)
treee87860513489d1ee847ca04994abf21af4495fe8 /TAO/TAO_IDL/be/be_visitor_arg_traits.cpp
parent0b6cb9fe7c81d483324327bdbd52ffae3a388e98 (diff)
downloadATCD-e333ff0d1bd92ea0f73692e6c601d0fdfe99fbae.tar.gz
ChangeLogTag: Fri Apr 22 10:01:31 2005 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_arg_traits.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_arg_traits.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_arg_traits.cpp b/TAO/TAO_IDL/be/be_visitor_arg_traits.cpp
index 0393e32cb3c..2725e149355 100644
--- a/TAO/TAO_IDL/be/be_visitor_arg_traits.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_arg_traits.cpp
@@ -112,8 +112,6 @@ be_visitor_arg_traits::visit_interface (be_interface *node)
if (node->seen_in_operation ())
{
TAO_OutStream *os = this->ctx_->stream ();
-// idl_bool stub = (this->ctx_->state () == TAO_CodeGen::TAO_ROOT_CS);
-// BE_GlobalData *b = be_global;
std::string guard_suffix =
std::string (this->S_) + std::string ("arg_traits");
@@ -125,7 +123,6 @@ be_visitor_arg_traits::visit_interface (be_interface *node)
*os << be_nl << be_nl
<< "template<>" << be_nl
<< "class "
-// << (stub ? b->stub_export_macro () : b->skel_export_macro ())
<< " " << this->S_ << "Arg_Traits<"
<< node->name () << ">" << be_idt_nl
<< ": public" << be_idt << be_idt_nl
@@ -207,7 +204,6 @@ be_visitor_arg_traits::visit_valuetype (be_valuetype *node)
os << be_nl << be_nl
<< "template<>" << be_nl
<< "class "
-// << be_global->stub_export_macro () << " "
<< this->S_ << "Arg_Traits<"
<< node->name () << ">" << be_idt_nl
<< ": public" << be_idt << be_idt_nl
@@ -327,7 +323,6 @@ be_visitor_arg_traits::visit_operation (be_operation *node)
*os << "template<>" << be_nl
<< "class "
-// << be_global->stub_export_macro () << " "
<< this->S_ << "Arg_Traits<" << node->flat_name ()
<< ">" << be_idt_nl
<< ": public" << be_idt << be_idt_nl
@@ -401,7 +396,6 @@ be_visitor_arg_traits::visit_attribute (be_attribute *node)
*os << "template<>" << be_nl
<< "class "
-// << be_global->stub_export_macro () << " "
<< this->S_ << "Arg_Traits<" << node->flat_name ()
<< ">" << be_idt_nl
<< ": public" << be_idt << be_idt_nl
@@ -467,7 +461,6 @@ be_visitor_arg_traits::visit_argument (be_argument *node)
*os << "template<>" << be_nl
<< "class "
-// << be_global->stub_export_macro () << " "
<< this->S_ << "Arg_Traits<" << node->flat_name ()
<< ">" << be_idt_nl
<< ": public" << be_idt << be_idt_nl
@@ -505,7 +498,6 @@ be_visitor_arg_traits::visit_sequence (be_sequence *node)
*os << be_nl << be_nl
<< "template<>" << be_nl
<< "class "
-// << be_global->stub_export_macro () << " "
<< this->S_ << "Arg_Traits<"
<< alias->name () << ">" << be_idt_nl
<< ": public" << be_idt << be_idt_nl
@@ -582,7 +574,6 @@ be_visitor_arg_traits::visit_string (be_string *node)
*os << be_nl << be_nl
<< "template<>" << be_nl
<< "class "
-// << be_global->stub_export_macro () << " "
<< this->S_ << "Arg_Traits<";
if (alias == 0)
@@ -659,7 +650,6 @@ be_visitor_arg_traits::visit_array (be_array *node)
*os << be_nl << be_nl
<< "template<>" << be_nl
<< "class "
-// << be_global->stub_export_macro () << " "
<< this->S_ << "Arg_Traits<"
<< node->name () << ">" << be_idt_nl
<< ": public" << be_idt << be_idt_nl;
@@ -718,7 +708,6 @@ be_visitor_arg_traits::visit_enum (be_enum *node)
*os << be_nl << be_nl
<< "template<>" << be_nl
<< "class "
-// << be_global->stub_export_macro () << " "
<< this->S_ << "Arg_Traits<"
<< node->name () << ">" << be_idt_nl
<< ": public" << be_idt << be_idt_nl;
@@ -760,7 +749,6 @@ be_visitor_arg_traits::visit_structure (be_structure *node)
*os << be_nl << be_nl
<< "template<>" << be_nl
<< "class "
-// << be_global->stub_export_macro () << " "
<< this->S_ << "Arg_Traits<"
<< node->name () << ">" << be_idt_nl
<< ": public" << be_idt << be_idt_nl;
@@ -875,7 +863,6 @@ be_visitor_arg_traits::visit_union (be_union *node)
*os << be_nl << be_nl
<< "template<>" << be_nl
<< "class "
-// << be_global->stub_export_macro () << " "
<< this->S_ << "Arg_Traits<"
<< node->name () << ">" << be_idt_nl
<< ": public" << be_idt << be_idt_nl;