summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_union/union_ch.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_union/union_ch.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_union/union_ch.h56
1 files changed, 31 insertions, 25 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/union_ch.h b/TAO/TAO_IDL/be_include/be_visitor_union/union_ch.h
index 64f6918c6aa..86813169ff1 100644
--- a/TAO/TAO_IDL/be_include/be_visitor_union/union_ch.h
+++ b/TAO/TAO_IDL/be_include/be_visitor_union/union_ch.h
@@ -1,41 +1,47 @@
/* -*- c++ -*- */
-
-//=============================================================================
-/**
- * @file union_ch.h
- *
- * $Id$
- *
- * Visitor for the Union class.
- * This one generates code in the client header.
- *
- *
- * @author Aniruddha Gokhale
- */
-//=============================================================================
-
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// union_ch.h
+//
+// = DESCRIPTION
+// Visitor for the Union class.
+// This one generates code in the client header.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
#ifndef _BE_VISITOR_UNION_UNION_CH_H_
#define _BE_VISITOR_UNION_UNION_CH_H_
-/**
- * @class be_visitor_union_ch
- *
- * @brief be_visitor_union_ch
- *
- * This is a concrete visitor to generate the client header for union
- */
class be_visitor_union_ch : public be_visitor_union
{
+ //
+ // = TITLE
+ // be_visitor_union_ch
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor to generate the client header for union
+ //
+ //
public:
- /// constructor
be_visitor_union_ch (be_visitor_context *ctx);
+ // constructor
- /// destructor
~be_visitor_union_ch (void);
+ // destructor
- /// visit union. We provide code for this method in the derived class
virtual int visit_union (be_union *node);
+ // visit union. We provide code for this method in the derived class
};