summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_union/union_ci.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_union/union_ci.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_union/union_ci.h56
1 files changed, 31 insertions, 25 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/union_ci.h b/TAO/TAO_IDL/be_include/be_visitor_union/union_ci.h
index 44ea708bd3c..d0d138f583d 100644
--- a/TAO/TAO_IDL/be_include/be_visitor_union/union_ci.h
+++ b/TAO/TAO_IDL/be_include/be_visitor_union/union_ci.h
@@ -1,41 +1,47 @@
/* -*- c++ -*- */
-
-//=============================================================================
-/**
- * @file union_ci.h
- *
- * $Id$
- *
- * Visitor for the Union class.
- * This one generates code in the client inline file.
- *
- *
- * @author Aniruddha Gokhale
- */
-//=============================================================================
-
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// union_ci.h
+//
+// = DESCRIPTION
+// Visitor for the Union class.
+// This one generates code in the client inline file.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
#ifndef _BE_VISITOR_UNION_UNION_CI_H_
#define _BE_VISITOR_UNION_UNION_CI_H_
-/**
- * @class be_visitor_union_ci
- *
- * @brief be_visitor_union_ci
- *
- * This is a concrete visitor to generate the client inline for union
- */
class be_visitor_union_ci : public be_visitor_union
{
+ //
+ // = TITLE
+ // be_visitor_union_ci
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor to generate the client inline for union
+ //
+ //
public:
- /// constructor
be_visitor_union_ci (be_visitor_context *ctx);
+ // constructor
- /// destructor
~be_visitor_union_ci (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
};