aboutsummaryrefslogtreecommitdiff
path: root/src/ui/controls/frame_layout.cpp
blob: 32d25edcebeb99bce495dce134ad8c25e75418b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "frame_layout.hpp"

namespace cru::ui::controls
{
    FrameLayout::FrameLayout() : Control(true)
    {

    }

    FrameLayout::~FrameLayout() = default;

    StringView FrameLayout::GetControlType() const
    {
        return control_type;
    }
}