![]() |
v0.1.8
|
An AutoRelease class to help be RAII compliant. More...
#include <AutoRelease.hpp>
Public Member Functions | |
void | SetRelease (Release release) |
Sets the automatic release method for a class. More... | |
An AutoRelease class to help be RAII compliant.
It is beneficial for some classes to not automatically release on destruction. Such classes break the RAII scheme that an object will be cleaned up if it goes out of scope. The purpose of this method is to release classes which are not automatically cleaned on destruction, but instead provide a method to be released.
void CGUL::AutoRelease< T >::SetRelease | ( | Release | release | ) |
Sets the automatic release method for a class.
When the AutoRelease object goes out of scope it will destroy the object it wraps by calling the release function provided by this method. If an object is no longer desired to be autorelease, it is possible to pass NULL to this method to remove the autorelease functionality from the class.