RefCount.cpp
Go to the documentation of this file.
1#include "RefCount.h"
2#ifdef _DEBUG
3#include <assert.h>
4#endif
5
6using namespace MiscLib;
7
9{
10#ifdef _DEBUG
11 assert(m_refCount == 0);
12#endif
13}
virtual ~RefCount()
Definition RefCount.cpp:8