diff options
author | 杨宇千 <crupest@outlook.com> | 2018-11-19 23:56:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-19 23:56:00 +0800 |
commit | 30333294fcd5917a9f3572f0c4c6dfc2ec429a3c (patch) | |
tree | 7d5d91ba4a0d979ceefea05bbe99efc47a9bf6a3 /src/ui/controls/frame_layout.cpp | |
parent | 3edc249f48b4d7e692c782c1ca4809e07fa0726f (diff) | |
parent | 5291b587708b7f1b9be9187aa4df99ea2cfe0538 (diff) | |
download | cru-30333294fcd5917a9f3572f0c4c6dfc2ec429a3c.tar.gz cru-30333294fcd5917a9f3572f0c4c6dfc2ec429a3c.tar.bz2 cru-30333294fcd5917a9f3572f0c4c6dfc2ec429a3c.zip |
Merge pull request #23 from crupest/20-framelayout
Add FrameLayout.
Diffstat (limited to 'src/ui/controls/frame_layout.cpp')
-rw-r--r-- | src/ui/controls/frame_layout.cpp | 16 |
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; + } +} |