Files
chatterino2/lambdaqrunnable.h
fourtf 2b4fa8071f asd
2017-01-03 21:19:33 +01:00

19 lines
294 B
C++

#ifndef LAMBDAQRUNNABLE_H
#define LAMBDAQRUNNABLE_H
#include "QRunnable"
#include "functional"
class LambdaQRunnable : public QRunnable
{
public:
LambdaQRunnable(std::function<bool ()> action);
void run();
private:
std::function<bool ()> action;
};
#endif // LAMBDAQRUNNABLE_H