diff options
Diffstat (limited to 'src/layouts/dynamic_layout.h')
| -rw-r--r-- | src/layouts/dynamic_layout.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/layouts/dynamic_layout.h b/src/layouts/dynamic_layout.h new file mode 100644 index 0000000..3692c36 --- /dev/null +++ b/src/layouts/dynamic_layout.h @@ -0,0 +1,17 @@ +#ifndef SRDWM_DYNAMIC_LAYOUT_H +#define SRDWM_DYNAMIC_LAYOUT_H + +#include "layout.h" +#include "../core/window.h" +#include <vector> + +class DynamicLayout : public Layout { +public: + DynamicLayout(); + ~DynamicLayout(); + + // Implement the pure virtual method from the base class + void arrange_windows(const std::vector<SRDWindow*>& windows, const Monitor& monitor) override; +}; + +#endif // SRDWM_DYNAMIC_LAYOUT_H |
