blob: 318904620d34dc4c3ae049d12b8ccf5c708e9fe0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// -*- C++ -*-
#include "tao/Codeset_Manager.h"
#include "tao/Codeset_Descriptor_Base.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_Codeset_Manager::~TAO_Codeset_Manager ()
{
}
// 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 ()
{
}
TAO_END_VERSIONED_NAMESPACE_DECL
|