v0.1.8
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Pages
CGUL::AutoRelease< T > Class Template Reference

An AutoRelease class to help be RAII compliant. More...

#include <AutoRelease.hpp>

Inheritance diagram for CGUL::AutoRelease< T >:

Public Member Functions

void SetRelease (Release release)
 Sets the automatic release method for a class. More...
 

Detailed Description

template<class T>
class CGUL::AutoRelease< T >

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.

Member Function Documentation

template<class T >
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.


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