Moved constructor prototype

Former-commit-id: a399ce2633c20bf41c7ba56cb346ced607043fc1
This commit is contained in:
Lynix
2012-12-02 23:05:28 +01:00
parent 780da2cfa5
commit 3d8549740e

View File

@@ -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();