blob: 2815dd56e0cee379d3b886c128e9243ae163449b (
plain)
1
2
3
4
5
6
7
8
9
|
// -*- C++ -*-
// $Id$
ACE_INLINE bool
ACE_Event_Descriptions::operator== (const ACE_Event_Descriptions &rhs) const
{
return this->minimum_id_ == rhs.minimum_id_ &&
this->descriptions_ == rhs.descriptions_;
}
|