RunOnObject: accept pointers to member functions

This commit is contained in:
Michael M 2017-09-15 09:08:09 -07:00
commit 7f812a7a03
2 changed files with 7 additions and 1 deletions

View file

@ -33,3 +33,9 @@ auto RunOnObject(QObject* object, F&& functor)
event.Wait();
return result;
}
template <typename Base, typename Type, typename Receiver>
auto RunOnObject(Receiver* obj, Type Base::*func)
{
return RunOnObject(obj, [obj, func] { return (obj->*func)(); });
}