11 lines
229 B
C++
11 lines
229 B
C++
|
|
#include "LayoutManager.hpp"
|
||
|
|
|
||
|
|
IHyprLayout* CLayoutManager::getCurrentLayout() {
|
||
|
|
switch (m_iCurrentLayoutID) {
|
||
|
|
case DWINDLE:
|
||
|
|
return &m_cDwindleLayout;
|
||
|
|
}
|
||
|
|
|
||
|
|
// fallback
|
||
|
|
return &m_cDwindleLayout;
|
||
|
|
}
|