summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_array/any_op_ch.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_array/any_op_ch.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_array/any_op_ch.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_array/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_array/any_op_ch.h
new file mode 100644
index 00000000000..8030e83f6cc
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_array/any_op_ch.h
@@ -0,0 +1,52 @@
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// any_op_ch.h
+//
+// = DESCRIPTION
+// Visitors for generation of code for Arrays in client header. This one
+// generates the Any operators.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_ARRAY_ANY_OP_CH_H_
+#define _BE_VISITOR_ARRAY_ANY_OP_CH_H_
+
+// ************************************************************
+// class be_visitor_array_any_op_ch
+// ************************************************************
+
+class be_visitor_array_any_op_ch : public be_visitor_decl
+{
+ //
+ // = TITLE
+ // be_visitor_array_any_op_ch
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor for array that generates the Any operator
+ // declarations
+ //
+
+public:
+ be_visitor_array_any_op_ch (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_array_any_op_ch (void);
+ // destructor
+
+ virtual int visit_array (be_array *node);
+ // visit array
+
+};
+
+#endif /* _BE_VISITOR_ARRAY_ANY_OP_CH_H_ */