summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_union_branch/private_ch.cpp
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-05-31 20:36:04 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-05-31 20:36:04 +0000
commitda85fd8f1a2be4c5ff4dec0c1b9fe30bac8d649f (patch)
tree41e0cb933835432d8985ae294414e9e2f8cb79be /TAO/TAO_IDL/be/be_visitor_union_branch/private_ch.cpp
parent8febd50e9d10c8754f64baa8d124c301906e36dc (diff)
downloadATCD-da85fd8f1a2be4c5ff4dec0c1b9fe30bac8d649f.tar.gz
ChangeLogTag: Mon May 31 20:34:36 UTC 2010 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_union_branch/private_ch.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_union_branch/private_ch.cpp22
1 files changed, 21 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_union_branch/private_ch.cpp b/TAO/TAO_IDL/be/be_visitor_union_branch/private_ch.cpp
index fb72b0ece4c..12ff5609cd5 100644
--- a/TAO/TAO_IDL/be/be_visitor_union_branch/private_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_union_branch/private_ch.cpp
@@ -13,7 +13,6 @@
*/
//=============================================================================
-
// **********************************************
// visitor for union_branch in the client header generating the private information
// **********************************************
@@ -539,6 +538,16 @@ be_visitor_union_branch_private_ch::visit_structure (be_structure *node)
}
int
+be_visitor_union_branch_private_ch::visit_structure_fwd (
+ be_structure_fwd *node)
+{
+ be_structure *s =
+ be_structure::narrow_from_decl (node->full_definition ());
+
+ return this->visit_structure (s);
+}
+
+int
be_visitor_union_branch_private_ch::visit_typedef (be_typedef *node)
{
this->ctx_->alias (node);
@@ -599,3 +608,14 @@ be_visitor_union_branch_private_ch::visit_union (be_union *node)
return 0;
}
+
+int
+be_visitor_union_branch_private_ch::visit_union_fwd (
+ be_union_fwd *node)
+{
+ be_union *u =
+ be_union::narrow_from_decl (node->full_definition ());
+
+ return this->visit_union (u);
+}
+