summaryrefslogtreecommitdiff
path: root/trunk/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_cs.h')
-rw-r--r--trunk/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_cs.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/trunk/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_cs.h b/trunk/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_cs.h
new file mode 100644
index 00000000000..d8b6d13f64a
--- /dev/null
+++ b/trunk/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_cs.h
@@ -0,0 +1,52 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// cdr_op_ch.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Structure class
+// This one provides code generation for the CDR operators for the structure
+// in the client stub.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_STRUCTURE_CDR_OP_CS_H_
+#define _BE_VISITOR_STRUCTURE_CDR_OP_CS_H_
+
+class be_visitor_structure_cdr_op_cs : public be_visitor_structure
+{
+ //
+ // = TITLE
+ // be_visitor_structure_cdr_op_cs
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor for structure that generates the CDR operator
+ // implementations
+ //
+
+public:
+ be_visitor_structure_cdr_op_cs (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_structure_cdr_op_cs (void);
+ // destructor
+
+ virtual int visit_structure (be_structure *node);
+ // visit structure
+
+ virtual int post_process (be_decl *);
+ // any post processing that needs to be done after a scope element is handled
+};
+
+#endif /* _BE_VISITOR_STRUCTURE_CDR_OP_CS_H_ */