blob: d6cadec53146cb09644abeba7176dafbb27a32bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
//$Id$
#include "tao/Base_Connection_Property.h"
#if !defined (__ACE_INLINE__)
# include "tao/Base_Connection_Property.inl"
#endif /* __ACE_INLINE__ */
ACE_RCSID(tao, Base_Connection_Property, "$Id$")
TAO_Base_Connection_Property::~TAO_Base_Connection_Property (void)
{
}
TAO_Connection_Descriptor_Interface *
TAO_Base_Connection_Property::duplicate (void)
{
// Get a copy of the underlying endpoint
TAO_Endpoint *endpt = this->endpoint_->duplicate ();
if (endpt == 0)
return 0;
// Construct a copy of our class
TAO_Base_Connection_Property *prop = 0;
ACE_NEW_RETURN (prop,
TAO_Base_Connection_Property (endpt,
1),
0);
return prop;
}
CORBA::Boolean
TAO_Base_Connection_Property::is_equivalent (
const TAO_Connection_Descriptor_Interface *rhs)
{
// Do away with const.
TAO_Connection_Descriptor_Interface *r =
ACE_const_cast (TAO_Connection_Descriptor_Interface *,
rhs);
TAO_Base_Connection_Property *other_desc =
ACE_dynamic_cast (TAO_Base_Connection_Property *,
r);
if (other_desc == 0)
return 0;
return this->endpoint_->is_equivalent (other_desc->endpoint_);
}
u_long
TAO_Base_Connection_Property::hash (void) const
{
return this->endpoint_->hash ();
}
|