OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
invoke.hpp
1#pragma once
2
3#include <QMetaObject>
4
5namespace ossia::qt
6{
7
8template <typename T, typename Fun>
9inline void run_async(T* self, Fun&& fun)
10{
11 QMetaObject::invokeMethod(self, std::forward<Fun>(fun), Qt::QueuedConnection);
12}
13
14}