summaryrefslogtreecommitdiff
path: root/trunk/TAO/TAO_IDL/be_include/be_visitor_array/array_ch.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/TAO_IDL/be_include/be_visitor_array/array_ch.h')
-rw-r--r--trunk/TAO/TAO_IDL/be_include/be_visitor_array/array_ch.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/trunk/TAO/TAO_IDL/be_include/be_visitor_array/array_ch.h b/trunk/TAO/TAO_IDL/be_include/be_visitor_array/array_ch.h
new file mode 100644
index 00000000000..0d54e4efe0a
--- /dev/null
+++ b/trunk/TAO/TAO_IDL/be_include/be_visitor_array/array_ch.h
@@ -0,0 +1,48 @@
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// array_ch.h
+//
+// = DESCRIPTION
+// Visitors for generation of code for Arrays in client header.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_ARRAY_CH_H_
+#define _BE_VISITOR_ARRAY_CH_H_
+
+// ************************************************************
+// class be_visitor_array_ch
+// ************************************************************
+
+class be_visitor_array_ch : public be_visitor_array
+{
+ //
+ // = TITLE
+ // be_visitor_array_ch
+ //
+ // = DESCRIPTION
+ // Code to be generated for arrays in the client header file
+ //
+public:
+ be_visitor_array_ch (be_visitor_context *ctx);
+ // constructor
+
+ virtual ~be_visitor_array_ch (void);
+ // destructor
+
+ virtual int visit_array (be_array *node);
+ // visit the array node
+};
+
+#endif /* _BE_VISITOR_ARRAY_CH_H_ */