Remote desk client supports Linux platform

This commit is contained in:
dijunkun
2023-09-22 14:48:21 +08:00
parent 9355b670b8
commit aa198a4629
9 changed files with 76 additions and 15 deletions

View File

@@ -24,8 +24,8 @@ class ThreadBase {
private:
std::unique_ptr<std::thread> thread_ = nullptr;
std::atomic<bool> stop_ = false;
std::atomic<bool> pause_ = false;
std::atomic<bool> stop_{false};
std::atomic<bool> pause_{false};
};
#endif