From 05abe24e4b076b9b9e40132b6504f06ca31bc68b Mon Sep 17 00:00:00 2001 From: crupest Date: Wed, 19 Jan 2022 23:17:49 +0800 Subject: ... --- include/cru/ui/mapper/PointMapper.hpp | 4 ++++ src/ui/CMakeLists.txt | 2 ++ src/ui/mapper/PointMapper.cpp | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 include/cru/ui/mapper/PointMapper.hpp create mode 100644 src/ui/mapper/PointMapper.cpp diff --git a/include/cru/ui/mapper/PointMapper.hpp b/include/cru/ui/mapper/PointMapper.hpp new file mode 100644 index 00000000..0f7f39fe --- /dev/null +++ b/include/cru/ui/mapper/PointMapper.hpp @@ -0,0 +1,4 @@ +#pragma once +#include "Mapper.hpp" + +namespace cru::ui::mapper {} diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt index 0d42c8b7..9dbe9b3c 100644 --- a/src/ui/CMakeLists.txt +++ b/src/ui/CMakeLists.txt @@ -28,6 +28,8 @@ add_library(cru_ui SHARED host/WindowHost.cpp mapper/Mapper.cpp mapper/MapperRegistry.cpp + mapper/PointMapper.cpp + mapper/ThicknessMapper.cpp render/BorderRenderObject.cpp render/CanvasRenderObject.cpp render/FlexLayoutRenderObject.cpp diff --git a/src/ui/mapper/PointMapper.cpp b/src/ui/mapper/PointMapper.cpp new file mode 100644 index 00000000..abd586a4 --- /dev/null +++ b/src/ui/mapper/PointMapper.cpp @@ -0,0 +1,3 @@ +#include "cru/ui/mapper/PointMapper.hpp" + +namespace cru::ui::mapper {} -- cgit v1.2.3