00001 /* -*- C++ -*- */ 00002 // $Id: PSDL_Visitor_Factory.h 51175 2003-07-21 23:51:40Z dhinton $ 00003 // 00004 // ============================================================================ 00005 // 00006 // = LIBRARY 00007 // PSS 00008 // 00009 // = FILENAME 00010 // PSDL_Visitor_Factory.h 00011 // 00012 // = AUTHOR 00013 // Priyanka Gontla <gontla_p@ociweb.com> 00014 // 00015 // ============================================================================ 00016 00017 #ifndef TAO_PSDL_VISITOR_FACTORY_H 00018 #define TAO_PSDL_VISITOR_FACTORY_H 00019 00020 #include /**/ "ace/pre.h" 00021 00022 #include "PSDL_Node_Visitor.h" 00023 00024 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00025 # pragma once 00026 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00027 00028 class TAO_PSDL_Export TAO_PSDL_Visitor_Factory 00029 { 00030 public: 00031 00032 TAO_PSDL_Visitor_Factory (); 00033 00034 ~TAO_PSDL_Visitor_Factory (); 00035 00036 TAO_PSDL_Node_Visitor *make_visitor (int type); 00037 }; 00038 00039 #include /**/ "ace/post.h" 00040 00041 #endif /* TAO_PSDL_VISITOR_FACTORY_H */