1#ifndef XXFunctionCallerH
2#define XXFunctionCallerH
24 std::is_base_of<AbstractCaller, T>::value;
30 template <CompileTimeString tag>
38 template <
CallerClass TargetClass,
typename... Args>
39 static void callOnAll(
void (TargetClass::*function)(Args...), Args... values);
41 template <CallerClass TargetClass>
42 static void callOnAll(
void (TargetClass::*function)());
47 static QList<Caller*> instances;
52#ifndef XXFunctionCallerHPP
53#include "XXFunctionCaller.hpp"
static size_t instanceCount()
static void callOnAll(void(TargetClass::*function)(Args...), Args... values)
static void callOnAll(void(TargetClass::*function)())
concept of a function caller class
Definition XXFunctionCaller.h:22
Definition XXFunctionCaller.h:11
Definition XXPopulatedAbstract.h:11