blob: 2b85812b3667c7b4f54716942e9c12e6f38ae220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// -*- C++ -*-
// =================================================================
/**
* @file ClientRequestInterceptor_Factory_Impl.cpp
*
* @author Johnny Willemsen <jwillemsen@remedy.nl>
*/
// =================================================================
#include "tao/PI/ClientRequestInterceptor_Factory_Impl.h"
#if TAO_HAS_INTERCEPTORS == 1
#include "tao/PI/ClientRequestInterceptor_Adapter_Impl.h"
#include "tao/ORB.h"
#include "tao/debug.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO::ClientRequestInterceptor_Adapter*
TAO_ClientRequestInterceptor_Adapter_Factory_Impl::create (void)
{
TAO::ClientRequestInterceptor_Adapter_Impl* obj = 0;
ACE_NEW_RETURN (obj,
TAO::ClientRequestInterceptor_Adapter_Impl ,//(interceptors, invocation),
0);
return obj;
}
ACE_STATIC_SVC_DEFINE (TAO_ClientRequestInterceptor_Adapter_Factory_Impl,
ACE_TEXT ("ClientRequestInterceptor_Adapter_Factory"),
ACE_SVC_OBJ_T,
&ACE_SVC_NAME (TAO_ClientRequestInterceptor_Adapter_Factory_Impl),
ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
0)
ACE_FACTORY_DEFINE (TAO_PI, TAO_ClientRequestInterceptor_Adapter_Factory_Impl)
TAO_END_VERSIONED_NAMESPACE_DECL
#endif /* TAO_HAS_INTERCEPTORS == 1 */
|