2022-03-18 20:03:39 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "../defines.hpp"
|
|
|
|
|
#include <thread>
|
|
|
|
|
#include "../Compositor.hpp"
|
|
|
|
|
|
|
|
|
|
class CThreadManager {
|
2022-12-16 17:17:31 +00:00
|
|
|
public:
|
2022-03-18 20:03:39 +01:00
|
|
|
CThreadManager();
|
|
|
|
|
~CThreadManager();
|
|
|
|
|
|
2022-07-21 12:33:22 +02:00
|
|
|
wl_event_source* m_esConfigTimer;
|
2022-03-18 20:03:39 +01:00
|
|
|
|
2022-12-16 17:17:31 +00:00
|
|
|
private:
|
2022-03-18 20:03:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
inline std::unique_ptr<CThreadManager> g_pThreadManager;
|