blob: 802e7bfdf1fa9df42f2d6621e37438c8273add4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// -*- C++ -*-
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE TAO_ORB_Core *
TAO_Connector::orb_core (void)
{
return this->orb_core_;
}
ACE_INLINE void
TAO_Connector::orb_core (TAO_ORB_Core *orb_core)
{
this->orb_core_ = orb_core;
}
ACE_INLINE CORBA::ULong
TAO_Connector::tag () const
{
return this->tag_;
}
TAO_END_VERSIONED_NAMESPACE_DECL
|