blob: 646a88b28a201a681df9571dacc109b8f2b00b4d (
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
44
45
46
47
48
49
50
51
|
/* -*- C++ -*- */
// =================================================================
/**
* @file CodecFactory.cpp
*
* $Id$
*
* @author Johnny Willemsen <jwillemsen@remedy.nl>
*
*/
// =================================================================
#include "CodecFactory.h"
#include "CodecFactory_impl.h"
#include "tao/ORB.h"
#include "tao/debug.h"
ACE_RCSID (CodecFactory,
CodecFactory,
"$Id$")
CORBA::Object_ptr
TAO_CodecFactory_Loader::create_object (
CORBA::ORB_ptr orb,
int,
ACE_TCHAR *[]
ACE_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
CORBA::Object_ptr obj = CORBA::Object::_nil ();
ACE_NEW_RETURN (obj,
TAO_CodecFactory (orb->orb_core ()),
CORBA::Object::_nil ());
return obj;
}
int
TAO_CodecFactory_Loader::Initializer (void)
{
return ACE_Service_Config::process_directive (ace_svc_desc_TAO_CodecFactory_Loader);
}
ACE_STATIC_SVC_DEFINE (TAO_CodecFactory_Loader,
ACE_TEXT ("CodecFactory_Loader"),
ACE_SVC_OBJ_T,
&ACE_SVC_NAME (TAO_CodecFactory_Loader),
ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
0)
ACE_FACTORY_DEFINE (TAO_CodecFactory, TAO_CodecFactory_Loader)
|