blob: 4ccd8ff75b8f983333f72cc867fc1e19a35c7e0a (
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++ -*-
#ifndef UTF8_LATIN1_FACTORY_H
#define UTF8_LATIN1_FACTORY_H
#include /**/ "ace/pre.h"
#include "tao/Codeset/codeset_export.h"
#include "ace/Service_Config.h"
#include "tao/Codeset/Codeset_Translator_Factory.h"
#include "tao/Codeset/UTF8_Latin1_Translator.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_Codeset_Export TAO_UTF8_Latin1_Factory
: public TAO_Codeset_Translator_Factory
{
public:
TAO_UTF8_Latin1_Factory ();
virtual ~TAO_UTF8_Latin1_Factory ();
virtual int init (int argc, ACE_TCHAR *argv[]);
/// ncs returns the translator's native codeset ID.
CONV_FRAME::CodeSetId ncs () const;
/// tcs returns the translator's transmission codeset ID.
CONV_FRAME::CodeSetId tcs () const;
/// Assign the translator to the input CDR. The inherited assign_i is used
/// to assign either a char or wchar translator, depending on the base type
/// of NCS_TO_TCS. A null input CDR is permitted, in which case assign is a
/// no-op.
virtual void assign (TAO_InputCDR *) const;
/// Assign the translator to the output CDR. The inherited assign_i is used
/// to assign either a char or wchar translator, depending on the base type
/// of NCS_TO_TCS. A null output CDR is permitted, in which case assign is a
/// no-op.
virtual void assign (TAO_OutputCDR *) const;
private:
void create_translator () const;
private:
TAO_UTF8_Latin1_Translator *translator_;
};
ACE_STATIC_SVC_DECLARE_EXPORT (TAO_Codeset, TAO_UTF8_Latin1_Factory)
ACE_FACTORY_DECLARE (TAO_Codeset, TAO_UTF8_Latin1_Factory)
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* UTF8_LATIN1_FACTORY_H */
|