blob: 7545b3b3e2b555f49453800dc7efc0aa4e4d1dde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// -*- C++ -*-
#if (TAO_HAS_CORBALOC_PARSER == 1)
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE
TAO_CORBALOC_Parser::parsed_endpoint::~parsed_endpoint ()
{
if (this->profile_ != 0)
this->profile_->_decr_refcnt();
}
TAO_END_VERSIONED_NAMESPACE_DECL
#endif /* TAO_HAS_CORBALOC_PARSER == 1 */
|