summaryrefslogtreecommitdiff
path: root/TAO_IDL/be_include/be_visitor_typedef/serializer_op_cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO_IDL/be_include/be_visitor_typedef/serializer_op_cs.h')
-rw-r--r--TAO_IDL/be_include/be_visitor_typedef/serializer_op_cs.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/TAO_IDL/be_include/be_visitor_typedef/serializer_op_cs.h b/TAO_IDL/be_include/be_visitor_typedef/serializer_op_cs.h
deleted file mode 100644
index 071be68e67e..00000000000
--- a/TAO_IDL/be_include/be_visitor_typedef/serializer_op_cs.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/* -*- c++ -*- */
-
-//=============================================================================
-/**
- * @file serializer_op_cs.h
- *
- * $Id$
- *
- * Concrete visitor for the Typedef class
- * This provides the code generation for the TAO::DCPS::Serializer operators
- * of the Typedef class in the client stubs.
- *
- *
- * @author Scott Harris <harris_s@ociweb.com> based on code by Aniruddha Gokhale
- */
-//=============================================================================
-
-
-#ifndef _BE_VISITOR_TYPEDEF_serializer_op_CS_H_
-#define _BE_VISITOR_TYPEDEF_serializer_op_CS_H_
-
-/**
- * @class be_visitor_typedef_serializer_op_cs
- *
- * @brief be_visitor_typedef_serializer_op_cs
- *
- * This is a concrete visitor for typedef that generates the Serializer operator
- * declarations and implementations
- */
-class be_visitor_typedef_serializer_op_cs : public be_visitor_typedef
-{
-
-public:
- /// constructor
- be_visitor_typedef_serializer_op_cs (be_visitor_context *ctx);
-
- /// destructor
- ~be_visitor_typedef_serializer_op_cs (void);
-
- /// visit typedef
- virtual int visit_typedef (be_typedef *node);
-
- // =visit methods on all elements syntactically valid as types that can be
- // typedefed.
-
- /// visit a array
- virtual int visit_array (be_array *node);
-
- /// visit a sequence
- virtual int visit_sequence (be_sequence *node);
-
- /// visit a structure
- virtual int visit_structure (be_structure *node);
-
- /// visit a union
- virtual int visit_union (be_union *node);
-};
-
-#endif /* _BE_VISITOR_TYPEDEF_serializer_op_CS_H_*/