summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_ci.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_ci.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_ci.h63
1 files changed, 34 insertions, 29 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_ci.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_ci.h
index 32996c9eb44..4f7fa51bea4 100644
--- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_ci.h
+++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_ci.h
@@ -1,52 +1,57 @@
/* -*- c++ -*- */
-
-//=============================================================================
-/**
- * @file cdr_op_ci.h
- *
- * $Id$
- *
- * Concrete visitor for valuetypes.
- * This one provides code generation for the CDR operators.
- *
- *
- * @author Torsten Kuepper <kuepper2@lfa.uni-wuppertal.de>
- */
-//=============================================================================
-
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// cdr_op_ci.h
+//
+// = DESCRIPTION
+// Concrete visitor for valuetypes.
+// This one provides code generation for the CDR operators.
+//
+// = AUTHOR
+// Torsten Kuepper <kuepper2@lfa.uni-wuppertal.de>
+//
+// ============================================================================
#ifndef _BE_VISITOR_VALUETYPE_CDR_OP_CI_H_
#define _BE_VISITOR_VALUETYPE_CDR_OP_CI_H_
-/**
- * @class be_visitor_valuetype_cdr_op_ci
- *
- * @brief be_visitor_valuetype_cdr_op_ci
- *
- * This is a concrete visitor for valuetype that generates the CDR operator
- * implementations
- */
class be_visitor_valuetype_cdr_op_ci : public be_visitor_valuetype
{
+ //
+ // = TITLE
+ // be_visitor_valuetype_cdr_op_ci
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor for valuetype that generates the CDR operator
+ // implementations
+ //
public:
- /// constructor
be_visitor_valuetype_cdr_op_ci (be_visitor_context *ctx);
+ // constructor
- /// destructor
~be_visitor_valuetype_cdr_op_ci (void);
+ // destructor
- /// visit valuetype
virtual int visit_valuetype (be_valuetype *node);
+ // visit valuetype
- /// visit field
virtual int visit_field (be_field *node);
+ // visit field
- /// visit array
virtual int visit_array (be_array *node);
+ // visit array
- /// visit sequence
virtual int visit_sequence (be_sequence *node);
+ // visit sequence
};
#endif /* _BE_VISITOR_VALUETYPE_CDR_OP_CI_H_ */