summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h
diff options
context:
space:
mode:
authorgokhale <asgokhale@users.noreply.github.com>1998-06-18 13:03:02 +0000
committergokhale <asgokhale@users.noreply.github.com>1998-06-18 13:03:02 +0000
commitd390c2dd3ece730c4aa679260914f77c138fed6a (patch)
tree5ca8c196f359f7d4abd86490a5d7fd83e5e36330 /TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h
parentaaecbedb1d5fda5b558ec9da329df7c138862726 (diff)
downloadATCD-d390c2dd3ece730c4aa679260914f77c138fed6a.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h b/TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h
new file mode 100644
index 00000000000..101ce40ce31
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h
@@ -0,0 +1,49 @@
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// array_cs.h
+//
+// = DESCRIPTION
+// Visitors for generation of code for Arrays in client stubs.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#if !defined (_BE_VISITOR_ARRAY_CS_H_)
+#define _BE_VISITOR_ARRAY_CS_H_
+
+// ************************************************************
+// class be_visitor_array_cs
+// ************************************************************
+
+class be_visitor_array_cs : public be_visitor_array
+{
+ //
+ // = TITLE
+ // be_visitor_array_cs
+ //
+ // = DESCRIPTION
+ // Code to be generated for arrays in the client stub file
+ //
+public:
+ be_visitor_array_cs (be_visitor_context *ctx);
+ // constructor
+
+ virtual ~be_visitor_array_cs (void);
+ // destructor
+
+ virtual int visit_array (be_array *node);
+ // visit the array node
+
+};
+
+#endif /* _BE_VISITOR_ARRAY_CS_H_ */