blob: 49c391fe0254057a468e9116ad8f45e456ffc787 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//$Id$
#include "tao/Connection_Descriptor_Interface.h"
#if !defined (__ACE_INLINE__)
# include "tao/Connection_Descriptor_Interface.inl"
#endif /* __ACE_INLINE__ */
ACE_RCSID(tao, Connection_Descriptor_Interface, "$Id$")
TAO_Connection_Descriptor_Interface::
~TAO_Connection_Descriptor_Interface (void)
{
if (this->endpoint_from_heap_)
delete this->endpoint_;
}
|