summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h53
1 files changed, 30 insertions, 23 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h
index cd34ca0e8ee..6c1b81a009f 100644
--- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h
+++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h
@@ -1,31 +1,38 @@
+//
+// $Id$
+//
/* -*- c++ -*- */
-//=============================================================================
-/**
- * @file valuetype_cs.h
- *
- * $Id$
- *
- * Concrete visitor for the Valuetype node.
- * This one provides code generation for valuetypes in the client stubs.
- *
- *
- * @author Torsten Kuepper <kuepper2@lfa.uni-wuppertal.de> based on code from Aniruddha Gokhale
- */
-//=============================================================================
-
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// valuetype_cs.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Valuetype node.
+// This one provides code generation for valuetypes in the client stubs.
+//
+// = AUTHOR
+// Torsten Kuepper <kuepper2@lfa.uni-wuppertal.de>
+// based on code from Aniruddha Gokhale
+//
+// ============================================================================
#ifndef _BE_VALUETYPE_VALUETYPE_CS_H_
#define _BE_VALUETYPE_VALUETYPE_CS_H_
-/**
- * @class be_visitor_valuetype_cs
- *
- * @brief be_visitor_valuetype_cs
- *
- * This is a concrete visitor to generate the client stubs for valuetype
- */
class be_visitor_valuetype_cs : public be_visitor_valuetype
{
+ //
+ // = TITLE
+ // be_visitor_valuetype_cs
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor to generate the client stubs for valuetype
+ //
+ //
public:
be_visitor_valuetype_cs (be_visitor_context *ctx);
@@ -34,12 +41,12 @@ public:
virtual int visit_valuetype (be_valuetype *node);
virtual int visit_eventtype (be_eventtype *node);
- /// Called only by AMH exceptions.
virtual int visit_operation (be_operation *node);
+ // Called only by AMH exceptions.
private:
- /// Recursive to generate for inherited members.
void gen_ostream_operator_r (be_valuetype *node, unsigned long &index);
+ // Recursive to generate for inherited members.
};
#endif /* _BE_VALUETYPE_VALUETYPE_CS_H_ */