Last active
September 23, 2015 01:04
-
-
Save bazhenovc/23f9b66eca4656f42cb5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Thread | |
{ | |
public: | |
typedef void (*ThreadWorkerFunction)(void*); | |
void StartWorkerFunction(ThreadWorkerFunction func); | |
template <typename F, typename ...Args> | |
inline void Start(F&& func, Args&&... args) | |
{ | |
// How would you implement this method? | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment