00001 /* 00002 * 00003 * 00004 * Distributed under the OpenDDS License. 00005 * See: http://www.opendds.org/license.html 00006 */ 00007 00008 #include "EntryExit.h" 00009 00010 ACE_INLINE 00011 OpenDDS::DCPS::RemoveAllVisitor::RemoveAllVisitor() 00012 : status_(0), 00013 removed_bytes_(0) 00014 { 00015 DBG_ENTRY_LVL("RemoveAllVisitor","RemoveAllVisitor",6); 00016 } 00017 00018 ACE_INLINE int 00019 OpenDDS::DCPS::RemoveAllVisitor::status() const 00020 { 00021 DBG_ENTRY_LVL("RemoveAllVisitor","status",6); 00022 return this->status_; 00023 } 00024 00025 ACE_INLINE int 00026 OpenDDS::DCPS::RemoveAllVisitor::removed_bytes() const 00027 { 00028 DBG_ENTRY_LVL("RemoveAllVisitor","removed_bytes",6); 00029 return static_cast<int>(this->removed_bytes_); 00030 }