blob: 7be89aa193222be50c46e00d62e4bbe0e1f547a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// $Id$
ACE_INLINE int
ACE_RMCast_Partial_Message::is_complete (void) const
{
return (this->hole_count_ == 0)
|| (this->hole_count_ == 1
&& this->hole_list_[0].start == this->hole_list_[0].end);
}
ACE_INLINE ACE_Message_Block *
ACE_RMCast_Partial_Message::message_body (void)
{
return &this->message_body_;
}
|