Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / Codeset_Descriptor_Base.h
blob4d2e4eda074d295c84da753f25f6536e88b785ba
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file Codeset_Descriptor_Base.h
7 * @author Phil Mesnier
8 */
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)
19 # pragma once
20 #endif /* ACE_LACKS_PRAGMA_ONCE */
22 #include /**/ "tao/Versioned_Namespace.h"
24 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
26 /**
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
32 * is not linked in.
34 class TAO_Export TAO_Codeset_Descriptor_Base
36 public:
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 */