summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_component/any_op_cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_component/any_op_cs.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_component/any_op_cs.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/any_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_component/any_op_cs.h
new file mode 100644
index 00000000000..9d1c560a694
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_component/any_op_cs.h
@@ -0,0 +1,47 @@
+//
+// $Id$
+//
+/* -*- c++ -*- */
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// any_op_cs.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Component node.
+// This one provides code generation for the Any operators
+//
+// = AUTHOR
+// Jeff Parsons
+//
+// ============================================================================
+
+#ifndef _BE_COMPONENT_ANY_OP_CS_H_
+#define _BE_COMPONENT_ANY_OP_CS_H_
+
+class be_visitor_component_any_op_cs : public be_visitor_component
+{
+ //
+ // = TITLE
+ // be_visitor_interface_any_op_cs
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor for interface that generates the Any operator
+ // implementations
+ //
+
+public:
+ be_visitor_component_any_op_cs (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_component_any_op_cs (void);
+ // destructor
+
+ virtual int visit_component (be_component *node);
+ // visit interface
+};
+
+#endif /* _BE_COMPONENT_ANY_OP_CS_H_ */