Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef TAO_IFR_REMOVING_VISITOR_H
00021 #define TAO_IFR_REMOVING_VISITOR_H
00022
00023 #include "ifr_visitor.h"
00024
00025 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00026 # pragma once
00027 #endif
00028
00029 class ifr_removing_visitor : public ifr_visitor
00030 {
00031
00032
00033
00034
00035
00036
00037
00038
00039 public:
00040 ifr_removing_visitor (void);
00041
00042
00043 virtual ~ifr_removing_visitor (void);
00044
00045
00046 virtual int visit_scope (UTL_Scope *node);
00047
00048
00049 virtual int visit_root (AST_Root *node);
00050
00051 };
00052
00053 #endif
00054