mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-07-26 09:41:57 -07:00
17 lines
276 B
C++
17 lines
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; |