blob: 2a8b2ba40b425170a0a0e02ef387c481971661b2 (
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
|
//
// $Id$
//
#include "RMCast_Proxy.h"
#if !defined (__ACE_INLINE__)
# include "RMCast_Proxy.i"
#endif /* ! __ACE_INLINE__ */
ACE_RCSID(ace, RMCast_Proxy, "$Id$")
ACE_RMCast_Proxy::~ACE_RMCast_Proxy (void)
{
}
ACE_UINT32
ACE_RMCast_Proxy::highest_in_sequence (void) const
{
return this->highest_in_sequence_;
}
ACE_UINT32
ACE_RMCast_Proxy::highest_received (void) const
{
return this->highest_received_;
}
|