Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / ServerRequestInterceptor_Adapter_Factory.h
blob945ef4c91632b3836120d27d382e8e0ef6dfee9c
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file ServerRequestInterceptor_Adapter_Factory.h
7 * @author Johnny Willemsen <jwillemsen@remedy.nl>
8 */
9 //=============================================================================
12 #ifndef TAO_SERVERREQUESTINTERCEPTOR_ADAPTER_FACTORY_H
13 #define TAO_SERVERREQUESTINTERCEPTOR_ADAPTER_FACTORY_H
15 #include /**/ "ace/pre.h"
16 #include "ace/Service_Object.h"
18 #if !defined (ACE_LACKS_PRAGMA_ONCE)
19 # pragma once
20 #endif /* ACE_LACKS_PRAGMA_ONCE */
22 #include /**/ "tao/TAO_Export.h"
23 #include "tao/orbconf.h"
25 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
27 namespace TAO
29 class ServerRequestInterceptor_Adapter;
32 /**
33 * @class TAO_ServerRequestInterceptor_Adapter_Factory
35 * @brief TAO_ServerRequestInterceptor_Adapter_Factory.
37 class TAO_Export TAO_ServerRequestInterceptor_Adapter_Factory
38 : public ACE_Service_Object
40 public:
41 virtual ~TAO_ServerRequestInterceptor_Adapter_Factory ();
43 virtual TAO::ServerRequestInterceptor_Adapter * create () = 0;
46 TAO_END_VERSIONED_NAMESPACE_DECL
48 #include /**/ "ace/post.h"
50 #endif /* TAO_SERVERREQUESTINTERCEPTOR_ADAPTER_FACTORY_H */