Update readme.md
[openttd-joker.git] / src / misc / countedobj.cpp
blob8952a2fa2ee7ea07158c2ea50e51e4c474d4b5ef
1 /* $Id: countedobj.cpp 17248 2009-08-21 20:21:05Z rubidium $ */
3 /*
4 * This file is part of OpenTTD.
5 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8 */
10 /** @file countedobj.cpp Support for reference counted objects. */
12 #include "../stdafx.h"
14 #include "countedptr.hpp"
16 #include "../safeguards.h"
18 int32 SimpleCountedObject::AddRef()
20 return ++m_ref_cnt;
23 int32 SimpleCountedObject::Release()
25 int32 res = --m_ref_cnt;
26 assert(res >= 0);
27 if (res == 0) {
28 try {
29 FinalRelease(); // may throw, for example ScriptTest/ExecMode
30 } catch (...) {
31 delete this;
32 throw;
34 delete this;
36 return res;