OpenTTD
Public Member Functions | Data Fields
SimpleCountedObject Struct Reference

Simple counted object. More...

#include <countedptr.hpp>

Inheritance diagram for SimpleCountedObject:
GRFTextWrapper ScriptInfo AIInfo AILibrary GameInfo GameLibrary

Public Member Functions

virtual int32 AddRef ()
virtual int32 Release ()
virtual void FinalRelease ()

Data Fields

int32 m_ref_cnt

Detailed Description

Simple counted object.

Use it as base of your struct/class if you want to use basic reference counting. Your struct/class will destroy and free itself when last reference to it is released (using Release() method). The initial reference count (when it is created) is zero (don't forget AddRef() at least one time if not using CCountedPtr<T>.

See Also
misc/countedobj.cpp for implementation.

Definition at line 206 of file countedptr.hpp.


The documentation for this struct was generated from the following files: