blob: 36729d3dcb32f9f7aede4a5268bd9303f805e5a5 (
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
52
53
54
|
// -*- C++ -*-
//=============================================================================
/**
* @file CodecFactory.h
*
* @author Carlos O'Ryan <coryan@uci.edu>
*/
//=============================================================================
#ifndef TAO_CODECFACTORY_H
#define TAO_CODECFACTORY_H
#include /**/ "ace/pre.h"
#include "tao/CodecFactory/codecfactory_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#define TAO_CODECFACTORY_SAFE_INCLUDE
#include "tao/CodecFactory/IOP_CodecC.h"
#undef TAO_CODECFACTORY_SAFE_INCLUDE
#include "tao/Object_Loader.h"
#include "ace/Service_Config.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_CODECFACTORY_Export TAO_CodecFactory_Loader
: public TAO_Object_Loader
{
public:
/// Creates a Codec factory and returns it.
virtual CORBA::Object_ptr create_object (CORBA::ORB_ptr orb,
int argc,
ACE_TCHAR *argv []);
/// Used to force the initialization of the ORB code.
static int Initializer ();
};
static int
TAO_Requires_CodecFactory_Initializer = TAO_CodecFactory_Loader::Initializer ();
ACE_STATIC_SVC_DECLARE (TAO_CodecFactory_Loader)
ACE_FACTORY_DECLARE (TAO_CODECFACTORY, TAO_CodecFactory_Loader)
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_CODECFACTORY_H */
|