Add non-animated SSSE3 blitter
[openttd/fttd.git] / src / misc / countedobj.cpp
blob228b35e82a0dab2138fcfc806eb432ca099d1cca
1 /* $Id$ */
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 int32 SimpleCountedObject::AddRef()
18 return ++m_ref_cnt;
21 int32 SimpleCountedObject::Release()
23 int32 res = --m_ref_cnt;
24 assert(res >= 0);
25 if (res == 0) {
26 FinalRelease();
27 delete this;
29 return res;