mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 13:26:00 +01:00
20 lines
No EOL
336 B
C++
20 lines
No EOL
336 B
C++
#pragma once
|
|
|
|
#include "../layout/DwindleLayout.hpp"
|
|
|
|
class CLayoutManager {
|
|
public:
|
|
|
|
IHyprLayout* getCurrentLayout();
|
|
|
|
private:
|
|
enum HYPRLAYOUTS {
|
|
DWINDLE = 0,
|
|
};
|
|
|
|
HYPRLAYOUTS m_iCurrentLayoutID = DWINDLE;
|
|
|
|
CHyprDwindleLayout m_cDwindleLayout;
|
|
};
|
|
|
|
inline std::unique_ptr<CLayoutManager> g_pLayoutManager; |