diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-09-24 00:03:24 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-09-24 00:03:24 +0000 |
commit | e03e8fda07958c6d0146d7a338fcb89a866c5cc2 (patch) | |
tree | 052368d8f02b8d2c55b1a97a832bc611f07069a7 /protocols/ace/RMCast/RMCast_Proxy.cpp | |
parent | c1942321e1cde5089afd7a0d39233ee33379fc9a (diff) | |
download | ATCD-e03e8fda07958c6d0146d7a338fcb89a866c5cc2.tar.gz |
ChangeLogTag:Sat Sep 23 16:55:26 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'protocols/ace/RMCast/RMCast_Proxy.cpp')
-rw-r--r-- | protocols/ace/RMCast/RMCast_Proxy.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/protocols/ace/RMCast/RMCast_Proxy.cpp b/protocols/ace/RMCast/RMCast_Proxy.cpp new file mode 100644 index 00000000000..2a8b2ba40b4 --- /dev/null +++ b/protocols/ace/RMCast/RMCast_Proxy.cpp @@ -0,0 +1,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_; +} |