blob: 936c8ac97c77dec0950a315d92779435cc4eb3c1 (
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
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file Codeset_Manager_Factory.h
*
* @author Carlos O'Ryan <coryan@uci.edu>
*/
//=============================================================================
#ifndef TAO_CODESET_MANAGER_FACTORY_H
#define TAO_CODESET_MANAGER_FACTORY_H
#include /**/ "ace/pre.h"
#include "tao/Codeset/codeset_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Service_Config.h"
#include "tao/Codeset_Manager_Factory_Base.h"
// ****************************************************************
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class TAO_Codeset_Manager_Factory
*
* @brief Class loader for initializing a codeset manager
*/
class TAO_Codeset_Export TAO_Codeset_Manager_Factory :
public TAO_Codeset_Manager_Factory_Base
{
public:
virtual ~TAO_Codeset_Manager_Factory ();
virtual TAO_Codeset_Manager *create(void);
virtual bool is_default(void) const;
};
ACE_STATIC_SVC_DECLARE (TAO_Codeset_Manager_Factory)
ACE_FACTORY_DECLARE (TAO_Codeset, TAO_Codeset_Manager_Factory)
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_CODESET_MANAGER_FACTORY_H */
|