mirror of
https://github.com/vale981/Hyprland
synced 2025-03-14 06:26:41 -04:00
17 lines
No EOL
277 B
C++
17 lines
No EOL
277 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; |