mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
15 lines
360 B
C
15 lines
360 B
C
|
#ifndef ASYNCEXEC_H
|
||
|
#define ASYNCEXEC_H
|
||
|
|
||
|
#include "QThreadPool"
|
||
|
#include "QRunnable"
|
||
|
#include "lambdaqrunnable.h"
|
||
|
#include "qcoreapplication.h"
|
||
|
|
||
|
#define async_start QThreadPool::globalInstance()->start(new LambdaQRunnable(
|
||
|
#define async_end ));
|
||
|
#define async_exec(a) QThreadPool::globalInstance()->start(new LambdaQRunnable([]{ a; }));
|
||
|
|
||
|
|
||
|
#endif // ASYNCEXEC_H
|