mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 15:25:59 +01:00
20 lines
336 B
C++
20 lines
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;
|