00001 // -*- C++ -*- 00002 00003 //============================================================================= 00004 /** 00005 * @file Endpoint_Acceptor_Filter_Factory.h 00006 * 00007 * $Id: Endpoint_Acceptor_Filter_Factory.h 84281 2009-01-30 15:01:17Z wotte $ 00008 * 00009 * The factory of the TAO_Endpoint_Acceptor_Filter objects. 00010 * 00011 * @author Yan Dai <dai_y@ociweb.com> 00012 */ 00013 //============================================================================= 00014 00015 #ifndef TAO_ENDPOINT_ACCEPTOR_FILTER_FACTORY_H 00016 #define TAO_ENDPOINT_ACCEPTOR_FILTER_FACTORY_H 00017 00018 #include /**/ "ace/pre.h" 00019 #include "ace/Service_Config.h" 00020 00021 #include "tao/EndpointPolicy/EndpointPolicy_Export.h" 00022 00023 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00024 # pragma once 00025 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00026 00027 #include "tao/PortableServer/Acceptor_Filter_Factory.h" 00028 00029 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00030 00031 /** 00032 * @class TAO_Endpoint_Acceptor_Filter_Factory 00033 * 00034 * @brief The factory of the TAO_Endpoint_Acceptor_Filter objects. 00035 * 00036 * Factory service object that creates the TAO_Endpoint_Acceptor_Filter objects. 00037 */ 00038 class TAO_EndpointPolicy_Export TAO_Endpoint_Acceptor_Filter_Factory 00039 : public TAO_Acceptor_Filter_Factory 00040 { 00041 public: 00042 virtual ~TAO_Endpoint_Acceptor_Filter_Factory(void); 00043 00044 /// Create a new TAO_Endpoint_Acceptor_Filter object. 00045 TAO_Acceptor_Filter* create_object (TAO_POA_Manager& poamanager); 00046 }; 00047 00048 00049 ACE_STATIC_SVC_DECLARE_EXPORT (TAO_EndpointPolicy, TAO_Endpoint_Acceptor_Filter_Factory) 00050 ACE_FACTORY_DECLARE (TAO_EndpointPolicy, TAO_Endpoint_Acceptor_Filter_Factory) 00051 00052 TAO_END_VERSIONED_NAMESPACE_DECL 00053 00054 00055 #include /**/ "ace/post.h" 00056 00057 #endif /* TAO_ENDPOINT_ACCEPTOR_FILTER_FACTORY_H */