LkEngine 0.1.2
 
Loading...
Searching...
No Matches
WindowsThread.h
1
6#pragma once
7
8#include "LkEngine/Core/Thread.h"
9
10namespace LkEngine {
11
12 class LWindowsThread : public LThread<LWindowsThread>
13 {
14 public:
17
18 private:
22 template <typename TRep, typename TPeriod>
23 void Internal_SleepImpl(const std::chrono::duration<TRep, TPeriod> Duration)
24 {
25 std::this_thread::sleep_for(Duration);
26 }
27
28 private:
29
30 friend class LThread;
31 };
32
33}
Definition Thread.h:33
Definition WindowsThread.h:13
Definition Asset.h:11