Moved constructor prototype
Former-commit-id: a399ce2633c20bf41c7ba56cb346ced607043fc1
This commit is contained in:
parent
780da2cfa5
commit
3d8549740e
|
|
@ -40,10 +40,10 @@ class NAZARA_API NzThread : NzNonCopyable
|
||||||
};
|
};
|
||||||
|
|
||||||
NzThread() = default;
|
NzThread() = default;
|
||||||
NzThread(NzThread&& other);
|
|
||||||
template<typename F> NzThread(F function);
|
template<typename F> NzThread(F function);
|
||||||
template<typename F, typename... Args> NzThread(F function, Args... args);
|
template<typename F, typename... Args> NzThread(F function, Args... args);
|
||||||
template<typename C> NzThread(void (C::*function)(), C* object);
|
template<typename C> NzThread(void (C::*function)(), C* object);
|
||||||
|
NzThread(NzThread&& other);
|
||||||
~NzThread();
|
~NzThread();
|
||||||
|
|
||||||
void Detach();
|
void Detach();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue