aboutsummaryrefslogtreecommitdiff
path: root/src/ui/controls/frame_layout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/controls/frame_layout.cpp')
-rw-r--r--src/ui/controls/frame_layout.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ui/controls/frame_layout.cpp b/src/ui/controls/frame_layout.cpp
new file mode 100644
index 00000000..32d25edc
--- /dev/null
+++ b/src/ui/controls/frame_layout.cpp
@@ -0,0 +1,16 @@
+#include "frame_layout.hpp"
+
+namespace cru::ui::controls
+{
+ FrameLayout::FrameLayout() : Control(true)
+ {
+
+ }
+
+ FrameLayout::~FrameLayout() = default;
+
+ StringView FrameLayout::GetControlType() const
+ {
+ return control_type;
+ }
+}