Files @ r10269:00d11ecda622
Branch filter:

Location: cpp/openttd-patchpack/source/src/misc/countedobj.cpp

michi_cc
(svn r14504) -Cleanup: Use the right variable type for tile offsets.
/* $Id$ */

/** @file countedobj.cpp Support for reference counted objects. */

#include "../stdafx.h"

#include "countedptr.hpp"

int32 SimpleCountedObject::AddRef()
{
	return ++m_ref_cnt;
}

int32 SimpleCountedObject::Release()
{
	int32 res = --m_ref_cnt;
	assert(res >= 0);
	if (res == 0) {
		FinalRelease();
		delete this;
	}
	return res;
}