Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / ClientRequestInterceptor_Adapter_Factory.h
blob0f514b2e3d10905203180357012dee2087f16e1f
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file ClientRequestInterceptor_Adapter_Factory.h
7 * @author Johnny Willemsen <jwillemsen@remedy.nl>
8 */
9 //=============================================================================
12 #ifndef TAO_CLIENTREQUESTINTERCEPTOR_ADAPTER_FACTORY_H
13 #define TAO_CLIENTREQUESTINTERCEPTOR_ADAPTER_FACTORY_H
15 #include /**/ "ace/pre.h"
17 #include /**/ "tao/TAO_Export.h"
19 #if !defined (ACE_LACKS_PRAGMA_ONCE)
20 # pragma once
21 #endif /* ACE_LACKS_PRAGMA_ONCE */
23 #include /**/ "tao/Versioned_Namespace.h"
25 #include "ace/Service_Object.h"
27 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
29 namespace TAO
31 class ClientRequestInterceptor_Adapter;
34 /**
35 * @class TAO_ClientRequestInterceptor_Adapter_Factory
37 * @brief TAO_ClientRequestInterceptor_Adapter_Factory.
39 class TAO_Export TAO_ClientRequestInterceptor_Adapter_Factory
40 : public ACE_Service_Object
42 public:
43 virtual ~TAO_ClientRequestInterceptor_Adapter_Factory ();
45 virtual TAO::ClientRequestInterceptor_Adapter *create () = 0;
48 TAO_END_VERSIONED_NAMESPACE_DECL
50 #include /**/ "ace/post.h"
52 #endif /* TAO_CLIENTREQUESTINTERCEPTOR_ADAPTER_FACTORY_H */