3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2026-03-22 07:04:36 +00:00
Files
Hyprland/src/managers/ThreadManager.hpp

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;