00001 /* -*- C++ -*- */ 00002 // PSDL_Module_Visitor.h,v 1.2 2003/07/21 23:51:30 dhinton Exp 00003 // 00004 // ============================================================================ 00005 // 00006 // = LIBRARY 00007 // PSS 00008 // 00009 // = FILENAME 00010 // PSDL_Module_Visitor.h 00011 // 00012 // = DESCRIPTION 00013 // Visitor class for the generated code for modules. 00014 // 00015 // = AUTHOR 00016 // Priyanka Gontla <gontla_p@ociweb.com> 00017 // 00018 // ============================================================================ 00019 00020 #ifndef TAO_PSDL_MODULE_VISITOR_H 00021 #define TAO_PSDL_MODULE_VISITOR_H 00022 00023 #include /**/ "ace/pre.h" 00024 00025 #include "PSDL_Node_Visitor.h" 00026 00027 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00028 # pragma once 00029 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00030 00031 class TAO_PSDL_Module_Visitor : public TAO_PSDL_Node_Visitor 00032 { 00033 public: 00034 00035 TAO_PSDL_Module_Visitor (); 00036 00037 ~TAO_PSDL_Module_Visitor (); 00038 00039 // Override the visit_module method. 00040 int visit_module (TAO_PSDL_Module *node); 00041 }; 00042 00043 #include /**/ "ace/post.h" 00044 00045 #endif /* TAO_PSDL_MODULE_VISITOR_H */