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