3 //=============================================================================
5 * @file Codeset_Descriptor_Base.h
9 //=============================================================================
11 #ifndef TAO_CODESET_DESCRIPTOR_BASE_H
12 #define TAO_CODESET_DESCRIPTOR_BASE_H
14 #include /**/ "ace/pre.h"
16 #include /**/ "tao/TAO_Export.h"
18 #if !defined (ACE_LACKS_PRAGMA_ONCE)
20 #endif /* ACE_LACKS_PRAGMA_ONCE */
22 #include /**/ "tao/Versioned_Namespace.h"
24 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
27 * TAO_Codeset_Descriptor_Base describes the necessary interface for
28 * Objects within libTAO to be able to supply information to the codeset
29 * subsystem, as required.
31 * This class also serves as a default implementation when codeset support
34 class TAO_Export TAO_Codeset_Descriptor_Base
37 virtual ~TAO_Codeset_Descriptor_Base ();
39 virtual void ncs (const ACE_TCHAR
*name
) = 0;
40 virtual void add_translator (const ACE_TCHAR
*name
) = 0;
43 TAO_END_VERSIONED_NAMESPACE_DECL
45 #include /**/ "ace/post.h"
47 #endif /* TAO_CODESET_DESCRIPTOR_BASE_H */