mirror of
https://github.com/hyprwm/Hyprland
synced 2025-01-10 21:49:49 +01:00
8bbeee1173
This adds a .clang-tidy file for us. It's not a strict requirement to be compliant, but I tuned it to be alright.
16 lines
No EOL
264 B
C++
16 lines
No EOL
264 B
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
struct wl_event_source;
|
|
|
|
class CThreadManager {
|
|
public:
|
|
CThreadManager();
|
|
~CThreadManager();
|
|
|
|
wl_event_source* m_esConfigTimer = nullptr;
|
|
|
|
private:
|
|
};
|
|
|
|
inline std::unique_ptr<CThreadManager> g_pThreadManager; |