From e4a0432383331e013808a97b7c24707e4ddc4726 Mon Sep 17 00:00:00 2001 From: srdusr Date: Fri, 26 Sep 2025 12:23:19 +0200 Subject: Initial Commit --- src/layouts/dynamic_layout.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/layouts/dynamic_layout.h (limited to 'src/layouts/dynamic_layout.h') 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 + +class DynamicLayout : public Layout { +public: + DynamicLayout(); + ~DynamicLayout(); + + // Implement the pure virtual method from the base class + void arrange_windows(const std::vector& windows, const Monitor& monitor) override; +}; + +#endif // SRDWM_DYNAMIC_LAYOUT_H -- cgit v1.2.3