mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 15:46:00 +01:00
17 lines
No EOL
276 B
C++
17 lines
No EOL
276 B
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
#include <thread>
|
|
#include "../Compositor.hpp"
|
|
|
|
class CThreadManager {
|
|
public:
|
|
CThreadManager();
|
|
~CThreadManager();
|
|
|
|
wl_event_source* m_esConfigTimer;
|
|
|
|
private:
|
|
};
|
|
|
|
inline std::unique_ptr<CThreadManager> g_pThreadManager; |