summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_structure/structure_ci.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_structure/structure_ci.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_structure/structure_ci.cpp58
1 files changed, 58 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_structure/structure_ci.cpp b/TAO/TAO_IDL/be/be_visitor_structure/structure_ci.cpp
new file mode 100644
index 00000000000..8feffbd15ea
--- /dev/null
+++ b/TAO/TAO_IDL/be/be_visitor_structure/structure_ci.cpp
@@ -0,0 +1,58 @@
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// structure_ci.cpp
+//
+// = DESCRIPTION
+// Visitor generating code for Structure in the inline file.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+ACE_RCSID (be_visitor_structure,
+ structure_ci,
+ "$Id$")
+
+// ******************************************************
+// for client inline
+// ******************************************************
+
+be_visitor_structure_ci::be_visitor_structure_ci (be_visitor_context *ctx)
+ : be_visitor_structure (ctx)
+{
+}
+
+be_visitor_structure_ci::~be_visitor_structure_ci (void)
+{
+}
+
+// visit the Structure node and its scope
+int be_visitor_structure_ci::visit_structure (be_structure *node)
+{
+ if (node->cli_inline_gen () || node->imported ())
+ {
+ return 0;
+ }
+
+ // All we have to do is to visit the scope.
+ if (this->visit_scope (node) == -1)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "(%N:%l) be_visitor_structure_ci::"
+ "visit_structure - "
+ "codegen for scope failed\n"),
+ -1);
+ }
+
+ node->cli_inline_gen (true);
+ return 0;
+}