summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_enum/enum_cs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_enum/enum_cs.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_enum/enum_cs.cpp70
1 files changed, 70 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_enum/enum_cs.cpp b/TAO/TAO_IDL/be/be_visitor_enum/enum_cs.cpp
new file mode 100644
index 00000000000..452cfeb3a7a
--- /dev/null
+++ b/TAO/TAO_IDL/be/be_visitor_enum/enum_cs.cpp
@@ -0,0 +1,70 @@
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// enum_cs.cpp
+//
+// = DESCRIPTION
+// Visitor generating code for Enums in the client stubs
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#include "be_visitor_typecode/enum_typecode.h"
+
+ACE_RCSID (be_visitor_enum,
+ enum_cs,
+ "$Id$")
+
+
+// ********************************************************************
+// Visitor implementation for the Enum type
+// This one for the client stubs file
+// ********************************************************************
+
+be_visitor_enum_cs::be_visitor_enum_cs (be_visitor_context *ctx)
+ : be_visitor_scope (ctx)
+{
+}
+
+be_visitor_enum_cs::~be_visitor_enum_cs (void)
+{
+}
+
+// visit the Enum_cs node and its scope
+int
+be_visitor_enum_cs::visit_enum (be_enum *node)
+{
+ if (node->cli_stub_gen ()
+ || node->imported ())
+ {
+ return 0;
+ }
+
+ if (be_global->tc_support ())
+ {
+ be_visitor_context ctx (*this->ctx_);
+ // ctx.sub_state (TAO_CodeGen::TAO_TC_DEFN_TYPECODE);
+ TAO::be_visitor_enum_typecode visitor (&ctx);
+
+ if (visitor.visit_enum (node) == -1)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "(%N:%l) be_visitor_enum_cs::"
+ "visit_enum - "
+ "TypeCode definition failed\n"),
+ -1);
+ }
+ }
+
+ node->cli_stub_gen (true);
+ return 0;
+}