00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
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
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