summaryrefslogtreecommitdiff
path: root/tao/CodecFactory/CodecFactory.h
blob: 92e28b2b42bf3c13128d9cc48b58fd6bde5ffd76 (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
55
56
57
58
// -*- C++ -*-

//=============================================================================
/**
 *  @file    CodecFactory.h
 *
 *  $Id$
 *
 *  @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 (void);
};

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 */