summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza-oci@users.noreply.github.com>2007-05-30 20:10:04 +0000
committerAdam Mitz <mitza-oci@users.noreply.github.com>2007-05-30 20:10:04 +0000
commit6d7640a8c34aa2be46881ee30b032d4fec512229 (patch)
treed681fceae2393f7b2f85016ec329aeda8efb98f8
parent7b544f9aaa10b1fa6da9ad15a4c4d180fe015557 (diff)
downloadATCD-6d7640a8c34aa2be46881ee30b032d4fec512229.tar.gz
ChangeLogTag: Wed May 30 20:06:04 UTC 2007 Adam Mitz <mitza@ociweb.com>
-rw-r--r--TAO/TAO_IDL/be/be_visitor_root/root.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_root/root.cpp b/TAO/TAO_IDL/be/be_visitor_root/root.cpp
index 74b1174c595..140ef6a4a93 100644
--- a/TAO/TAO_IDL/be/be_visitor_root/root.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_root/root.cpp
@@ -1746,3 +1746,35 @@ be_visitor_root::visit_typedef (be_typedef *node)
return 0;
}
+int
+be_visitor_root::visit_native (be_native *node)
+{
+ // Instantiate a visitor context with a copy of our context. This info
+ // will be modified based on what type of node we are visiting
+ be_visitor_context ctx (*this->ctx_);
+ ctx.node (node);
+ int status = 0;
+
+ switch (this->ctx_->state ())
+ {
+ case TAO_CodeGen::TAO_ROOT_CH:
+ {
+ be_visitor_native_ch visitor (&ctx);
+ status = node->accept (&visitor);
+ break;
+ }
+ default:
+ return 0; // nothing to be done
+ }
+
+ if (status == -1)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "(%N:%l) be_visitor_root::"
+ "visit_native - "
+ "failed to accept visitor\n"),
+ -1);
+ }
+
+ return 0;
+}