Files
unison/src/core/model/ref-count-base.cc
2012-11-10 19:16:38 +01:00

14 lines
187 B
C++

#include "ref-count-base.h"
#include "log.h"
NS_LOG_COMPONENT_DEFINE ("RefCountBase");
namespace ns3 {
RefCountBase::~RefCountBase ()
{
NS_LOG_FUNCTION (this);
}
} // namespace ns3