This commit is contained in:
fourtf
2017-01-03 21:19:33 +01:00
parent 4ccbc8d4e4
commit 2b4fa8071f
22 changed files with 463 additions and 23 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "lambdaqrunnable.h"
LambdaQRunnable::LambdaQRunnable(std::function<bool ()> action)
{
this->action = action;
}
void LambdaQRunnable::run()
{
action();
}