summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_decl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_decl.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_decl.h53
1 files changed, 29 insertions, 24 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_decl.h b/TAO/TAO_IDL/be_include/be_visitor_decl.h
index a6f9e616227..ca9132d486a 100644
--- a/TAO/TAO_IDL/be_include/be_visitor_decl.h
+++ b/TAO/TAO_IDL/be_include/be_visitor_decl.h
@@ -1,17 +1,22 @@
+//
+// $Id$
+//
/* -*- c++ -*- */
-//=============================================================================
-/**
- * @file be_visitor_decl.h
- *
- * $Id$
- *
- * Concrete visitor for the base "BE_Decl" node
- *
- *
- * @author Aniruddha Gokhale and Carlos O'Ryan
- */
-//=============================================================================
-
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// be_visitor_decl.h
+//
+// = DESCRIPTION
+// Concrete visitor for the base "BE_Decl" node
+//
+// = AUTHOR
+// Aniruddha Gokhale and Carlos O'Ryan
+//
+// ============================================================================
#ifndef TAO_BE_VISITOR_DECL_H
#define TAO_BE_VISITOR_DECL_H
@@ -19,16 +24,16 @@
#include "be_visitor.h"
#include "be_codegen.h"
-/**
- * @class be_visitor_decl
- *
- * @brief be_visitor_decl
- *
- * This is a concrete visitor for the be_decl node. Its only purpose is to
- * maintain state information for the derived visitor
- */
class be_visitor_decl : public be_visitor
{
+ //
+ // = TITLE
+ // be_visitor_decl
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor for the be_decl node. Its only purpose is to
+ // maintain state information for the derived visitor
+ //
public:
be_visitor_decl (be_visitor_context *ctx);
@@ -40,13 +45,13 @@ protected:
// Using a protected mechanism will allow derived visitors to access this
// information.
- /// Any context information required by the visitor.
be_visitor_context *ctx_;
+ // Any context information required by the visitor.
- /// Factors out common code used when one anonymous type is
- /// contained by another.
int gen_anonymous_base_type (be_type *bt,
TAO_CodeGen::CG_STATE cg_state);
+ // Factors out common code used when one anonymous type is
+ // contained by another.
};
#endif // TAO_BE_VISITOR_DECL_H