00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef TAO_SERVERREQUESTINTERCEPTOR_ADAPTER_FACTORY_H
00015 #define TAO_SERVERREQUESTINTERCEPTOR_ADAPTER_FACTORY_H
00016
00017 #include "ace/pre.h"
00018 #include "ace/Service_Object.h"
00019
00020 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00021 # pragma once
00022 #endif
00023
00024 #include "tao/TAO_Export.h"
00025 #include "tao/orbconf.h"
00026
00027 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00028
00029 namespace TAO
00030 {
00031 class ServerRequestInterceptor_Adapter;
00032 }
00033
00034
00035
00036
00037
00038
00039 class TAO_Export TAO_ServerRequestInterceptor_Adapter_Factory
00040 : public ACE_Service_Object
00041 {
00042 public:
00043 virtual ~TAO_ServerRequestInterceptor_Adapter_Factory (void);
00044
00045 virtual TAO::ServerRequestInterceptor_Adapter * create (void) = 0;
00046 };
00047
00048 TAO_END_VERSIONED_NAMESPACE_DECL
00049
00050 #include "ace/post.h"
00051
00052 #endif