summaryrefslogtreecommitdiff
path: root/ACE/TAO/TAO_IDL/be_include/be_visitor_module/serializer_op.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/TAO_IDL/be_include/be_visitor_module/serializer_op.h')
-rw-r--r--ACE/TAO/TAO_IDL/be_include/be_visitor_module/serializer_op.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/ACE/TAO/TAO_IDL/be_include/be_visitor_module/serializer_op.h b/ACE/TAO/TAO_IDL/be_include/be_visitor_module/serializer_op.h
new file mode 100644
index 00000000000..54d83515334
--- /dev/null
+++ b/ACE/TAO/TAO_IDL/be_include/be_visitor_module/serializer_op.h
@@ -0,0 +1,50 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// serializer_op.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Module class
+// This one provides visitors to generate the
+// TAO::DCPS::Serializer operators for elements in
+// the Module's scope.
+//
+// = AUTHOR
+// Scott Harris <harris_s@ociweb.com> based on code by Aniruddha Gokhale
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_MODULE_serializer_op_H_
+#define _BE_VISITOR_MODULE_serializer_op_H_
+
+class be_visitor_module_serializer_op : public be_visitor_module
+{
+ //
+ // = TITLE
+ // be_visitor_module_serializer_op
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor for module that generates the Serializer operator
+ // declarations and implementations
+ //
+
+public:
+ be_visitor_module_serializer_op (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_module_serializer_op (void);
+ // destructor
+
+ virtual int visit_module (be_module *node);
+ // visit module
+};
+
+#endif /* _BE_VISITOR_MODULE_serializer_op_H_ */