xbmc
|
#include <CallbackFunction.h>
Public Member Functions | |
virtual void | executeCallback ()=0 |
AddonClass * | getObject () |
![]() | |
const char * | GetClassname () const |
LanguageHook * | GetLanguageHook () |
bool | isDeallocating () |
This method should be called while holding a Synchronize on the object. More... | |
void | Release () const |
void | Acquire () const |
Protected Member Functions | |
Callback (AddonClass *_object) | |
![]() | |
virtual void | deallocating () |
This method is meant to be called from the destructor of the lowest level class. More... | |
Protected Attributes | |
AddonClass * | addonClassObject |
![]() | |
LanguageHook * | languageHook |
Additional Inherited Members | |
![]() | |
static short | getNumAddonClasses () |
![]() | |
static short | getNextClassIndex () |
This is meant to be called during static initialization and so isn't synchronized. | |
This is the parent class for the class templates that hold a callback. A callback is essentially a templatized functor (functoid?) for a call to a member function.
This class combined with the attending CallbackHandlers should make sure that the AddonClass isn't in the midst of deallocating when the callback executes. In this way the Callback class acts as a weak reference.