summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_structure/serializer_op_cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_structure/serializer_op_cs.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_structure/serializer_op_cs.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_structure/serializer_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_structure/serializer_op_cs.h
new file mode 100644
index 00000000000..f4c8292fbf8
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_structure/serializer_op_cs.h
@@ -0,0 +1,55 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// serializer_op_ch.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Structure class
+// This one provides code generation for the TAO::DCPS::Serializer operators
+// for the structure in the client stub.
+//
+// = AUTHOR
+// Scott Harris <harris_s@ociweb.com> based on code by Aniruddha Gokhale
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_STRUCTURE_serializer_op_CS_H_
+#define _BE_VISITOR_STRUCTURE_serializer_op_CS_H_
+
+class be_visitor_structure_serializer_op_cs : public be_visitor_structure
+{
+ //
+ // = TITLE
+ // be_visitor_structure_serializer_op_cs
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor for structure that generates the Serializer operator
+ // implementations
+ //
+
+public:
+ be_visitor_structure_serializer_op_cs (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_structure_serializer_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 field is handled
+
+ virtual int pre_process (be_decl *bd);
+ // any preprocessing that needs to be done before a field is handled
+};
+
+#endif /* _BE_VISITOR_STRUCTURE_serializer_op_CS_H_ */