summaryrefslogtreecommitdiff
path: root/TAO/tao/Cache_Entries.cpp
blob: 15d020057c2b3d3ac24849a6ac7d4328a9b3cdf2 (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
//$Id$

#include "tao/Cache_Entries.h"


#if !defined (__ACE_INLINE__)
# include "tao/Cache_Entries.inl"
#endif /* __ACE_INLINE__ */

ACE_RCSID(tao, Cache_Entries, "$Id$")


void
TAO_Cache_IntId::operator= (const TAO_Cache_IntId &rhs)
{
  this->handler_ = rhs.handler_;
}

int
TAO_Cache_IntId::operator== (const TAO_Cache_IntId &rhs) const
{
  return (this->handler_ == rhs.handler_);
}

int
TAO_Cache_IntId::operator!= (const TAO_Cache_IntId &rhs) const
{
  return (this->handler_ != rhs.handler_);
}