blob: 0402bfc6aeaf5f26f9cc33369806169c66dc0098 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// $Id$
#include "tao/Codeset_Manager.h"
#include "tao/Codeset_Descriptor_Base.h"
ACE_RCSID (tao,
Codeset_Manager,
"$Id$")
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_Codeset_Manager::~TAO_Codeset_Manager (void)
{
}
// Add the destructor for the codeset_descriptor_base here, because
// it is only ever used in conjunction with the codeset manager.
TAO_Codeset_Descriptor_Base::~TAO_Codeset_Descriptor_Base (void)
{
}
TAO_END_VERSIONED_NAMESPACE_DECL
|