summaryrefslogtreecommitdiff
path: root/ACE/TAO/TAO_IDL/be_include/be_visitor_union/any_op_cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/TAO_IDL/be_include/be_visitor_union/any_op_cs.h')
-rw-r--r--ACE/TAO/TAO_IDL/be_include/be_visitor_union/any_op_cs.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/ACE/TAO/TAO_IDL/be_include/be_visitor_union/any_op_cs.h b/ACE/TAO/TAO_IDL/be_include/be_visitor_union/any_op_cs.h
new file mode 100644
index 00000000000..6f7bef92ca0
--- /dev/null
+++ b/ACE/TAO/TAO_IDL/be_include/be_visitor_union/any_op_cs.h
@@ -0,0 +1,52 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// any_op_cs.h
+//
+// = DESCRIPTION
+// Visitor for the Union class.
+// This one generates code for the Any operators for the Union in the client
+// header.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_UNION_ANY_OP_CS_H_
+#define _BE_VISITOR_UNION_ANY_OP_CS_H_
+
+class be_visitor_union_any_op_cs : public be_visitor_union
+{
+ //
+ // = TITLE
+ // be_visitor_union_any_op_compiled_cs
+ //
+ // = DESCRIPTION
+ // This is a visitor for unions that generates the Any
+ // operator implementations.
+ //
+
+public:
+ be_visitor_union_any_op_cs (be_visitor_context *ctx);
+
+ ~be_visitor_union_any_op_cs (void);
+
+ virtual int visit_union (be_union *node);
+
+ virtual int visit_union_branch (be_union_branch *node);
+
+ virtual int visit_enum (be_enum *node);
+
+ virtual int visit_structure (be_structure *node);
+};
+
+#endif /* _BE_VISITOR_UNION_ANY_OP_CS_H_ */