Inviwo  0.9.10.1
Inviwo documentation
inviwo::CallBackList Class Reference

#include <callback.h>

Public Member Functions

void startBlockingCallbacks ()
 
void stopBlockingCallbacks ()
 
void invokeAll () const
 
template<typename T >
const BaseCallBack * addMemberFunction (T *o, void(T::*m)())
 
const BaseCallBack * addLambdaCallback (std::function< void()> lambda)
 
std::shared_ptr< std::function< void()> > addLambdaCallbackRaii (std::function< void()> lambda)
 
bool remove (const BaseCallBack *callback)
 Removes callback if the callback was added before. More...
 
void clear ()
 Removes all added callbacks.
 
template<typename T >
void removeMemberFunction (T *o)
 Remove all callbacks associated with the object.
 

Detailed Description

Example usage CallBackList list; list.addMemberFunction(&myClassObject, &MYClassObject::myFunction); or list.addLambdaCallback([](){});

Member Function Documentation

◆ remove()

bool inviwo::CallBackList::remove ( const BaseCallBack *  callback)
inline

Removes callback if the callback was added before.

Parameters
callbackCallback to be removed.
Returns
bool True if removed, false otherwise.

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