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_ADDING_VISITOR_EXCEPTION_H
00021 #define TAO_IFR_ADDING_VISITOR_EXCEPTION_H
00022
00023 #include "ifr_adding_visitor.h"
00024
00025 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00026 # pragma once
00027 #endif
00028
00029 class ifr_adding_visitor_exception : public ifr_adding_visitor
00030 {
00031
00032
00033
00034
00035
00036
00037
00038
00039 public:
00040 ifr_adding_visitor_exception (AST_Decl *scope,
00041 CORBA::Boolean in_reopened_);
00042
00043
00044 virtual ~ifr_adding_visitor_exception (void);
00045
00046
00047 virtual int visit_scope (UTL_Scope *node);
00048
00049
00050 virtual int visit_structure (AST_Structure *node);
00051
00052
00053 virtual int visit_exception (AST_Exception *node);
00054
00055
00056 virtual int visit_enum (AST_Enum *node);
00057
00058
00059 virtual int visit_union (AST_Union *node);
00060
00061
00062 virtual CORBA::IDLType_ptr ir_current (void) const;
00063
00064
00065 private:
00066 int add_members (AST_Exception *node, CORBA::ExceptionDef_ptr except_def);
00067
00068
00069
00070 private:
00071 CORBA::StructMemberSeq members_;
00072
00073
00074
00075 };
00076
00077 #endif