diff options
Diffstat (limited to 'platform/uwp/thread_uwp.h')
-rw-r--r-- | platform/uwp/thread_uwp.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/platform/uwp/thread_uwp.h b/platform/uwp/thread_uwp.h index 06c19c0139..b4e67c8b5c 100644 --- a/platform/uwp/thread_uwp.h +++ b/platform/uwp/thread_uwp.h @@ -39,25 +39,20 @@ class ThreadUWP : public Thread { std::thread thread; - static Thread* create_func_uwp(ThreadCreateCallback p_callback,void *,const Settings&); + static Thread *create_func_uwp(ThreadCreateCallback p_callback, void *, const Settings &); static ID get_thread_ID_func_uwp(); - static void wait_to_finish_func_uwp(Thread* p_thread); + static void wait_to_finish_func_uwp(Thread *p_thread); ThreadUWP(); -public: - +public: virtual ID get_ID() const; static void make_default(); - ~ThreadUWP(); - }; - #endif #endif - |