summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_module/cdr_op.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_module/cdr_op.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_module/cdr_op.h59
1 files changed, 32 insertions, 27 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_module/cdr_op.h b/TAO/TAO_IDL/be_include/be_visitor_module/cdr_op.h
index dfc2c85171b..78a56a082f9 100644
--- a/TAO/TAO_IDL/be_include/be_visitor_module/cdr_op.h
+++ b/TAO/TAO_IDL/be_include/be_visitor_module/cdr_op.h
@@ -1,44 +1,49 @@
/* -*- c++ -*- */
-
-//=============================================================================
-/**
- * @file cdr_op.h
- *
- * $Id$
- *
- * Concrete visitor for the Module class
- * This one provides visitors to generate the CDR operators for elements in
- * the Module's scope.
- *
- *
- * @author Aniruddha Gokhale
- */
-//=============================================================================
-
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// cdr_op.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Module class
+// This one provides visitors to generate the CDR operators for elements in
+// the Module's scope.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
#ifndef _BE_VISITOR_MODULE_CDR_OP_H_
#define _BE_VISITOR_MODULE_CDR_OP_H_
-/**
- * @class be_visitor_module_cdr_op
- *
- * @brief be_visitor_module_cdr_op
- *
- * This is a concrete visitor for module that generates the CDR operator
- * declarations and implementations
- */
class be_visitor_module_cdr_op : public be_visitor_module
{
+ //
+ // = TITLE
+ // be_visitor_module_cdr_op
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor for module that generates the CDR operator
+ // declarations and implementations
+ //
public:
- /// constructor
be_visitor_module_cdr_op (be_visitor_context *ctx);
+ // constructor
- /// destructor
~be_visitor_module_cdr_op (void);
+ // destructor
- /// visit module
virtual int visit_module (be_module *node);
+ // visit module
};
#endif /* _BE_VISITOR_MODULE_CDR_OP_H_ */