summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/IFR_Service/ifr_removing_visitor.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/IFR_Service/ifr_removing_visitor.h')
-rw-r--r--TAO/orbsvcs/IFR_Service/ifr_removing_visitor.h53
1 files changed, 25 insertions, 28 deletions
diff --git a/TAO/orbsvcs/IFR_Service/ifr_removing_visitor.h b/TAO/orbsvcs/IFR_Service/ifr_removing_visitor.h
index 4b6f82fa44e..fafd298476f 100644
--- a/TAO/orbsvcs/IFR_Service/ifr_removing_visitor.h
+++ b/TAO/orbsvcs/IFR_Service/ifr_removing_visitor.h
@@ -1,21 +1,18 @@
-// $Id$
/* -*- c++ -*- */
-// ============================================================================
-//
-// = LIBRARY
-// TAO_IFR_BE_DLL
-//
-// = FILENAME
-// ifr_removing_visitor.h
-//
-// = DESCRIPTION
-// Header file for class ifr_removing_visitor.
-//
-// = AUTHOR
-// Jeff Parsons <parsons@cs.wustl.edu>
-//
-// ============================================================================
+//=============================================================================
+/**
+ * @file ifr_removing_visitor.h
+ *
+ * $Id$
+ *
+ * Header file for class ifr_removing_visitor.
+ *
+ *
+ * @author Jeff Parsons <parsons@cs.wustl.edu>
+ */
+//=============================================================================
+
#ifndef TAO_IFR_REMOVING_VISITOR_H
#define TAO_IFR_REMOVING_VISITOR_H
@@ -26,28 +23,28 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+/**
+ * @class ifr_removing_visitor
+ *
+ * @brief ifr_removing_visitor.
+ *
+ * This visitor removes items found in the IDL file being processed
+ * from the Interface Repository.
+ */
class ifr_removing_visitor : public ifr_visitor
{
- //
- // = TITLE
- // ifr_removing_visitor.
- //
- // = DESCRIPTION
- // This visitor removes items found in the IDL file being processed
- // from the Interface Repository.
- //
public:
+ /// Constructor.
ifr_removing_visitor (void);
- // Constructor.
+ /// Destructor.
virtual ~ifr_removing_visitor (void);
- // Destructor.
+ /// Visit the scope.
virtual int visit_scope (UTL_Scope *node);
- // Visit the scope.
+ /// Visit the root.
virtual int visit_root (AST_Root *node);
- // Visit the root.
};
#endif /* TAO_IFR_REMOVING_VISITOR_H */