summaryrefslogtreecommitdiffstats
path: root/client/threadboundary.cpp
blob: cd30e747c12358dcef4832489b1a82458bf26282 (plain)
1
2
3
4
5
6
7
8
9
#include "threadboundary.h"

Q_DECLARE_METATYPE(std::function<void()>);

namespace async {
ThreadBoundary::ThreadBoundary(): QObject() { qRegisterMetaType<std::function<void()> >("std::function<void()>"); }
ThreadBoundary:: ~ThreadBoundary() {}
}