mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 17:40:39 +00:00
20 lines
194 B
C++
20 lines
194 B
C++
#include "Core.h"
|
|
|
|
#include <QTimer>
|
|
|
|
Core::Core()
|
|
{
|
|
|
|
}
|
|
|
|
Core::~Core()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void QInvoke::call(const std::function<void()> &f)
|
|
{
|
|
QTimer::singleShot(0, new QInvoke(f), SLOT(doInvoke()));
|
|
}
|