aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/mapper/style
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-01-22 22:22:45 +0800
committercrupest <crupest@outlook.com>2022-01-22 22:22:45 +0800
commit14d9efc39635dab2c6c0f791d6b0a63c92d941ee (patch)
tree0e974083611d5725a2135928749026ac237884f4 /include/cru/ui/mapper/style
parent0e71e7022ee4cfec5b27e178ee1bb7d6977f6b3e (diff)
downloadcru-14d9efc39635dab2c6c0f791d6b0a63c92d941ee.tar.gz
cru-14d9efc39635dab2c6c0f791d6b0a63c92d941ee.tar.bz2
cru-14d9efc39635dab2c6c0f791d6b0a63c92d941ee.zip
...
Diffstat (limited to 'include/cru/ui/mapper/style')
-rw-r--r--include/cru/ui/mapper/style/BorderStyleMapper.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/cru/ui/mapper/style/BorderStyleMapper.hpp b/include/cru/ui/mapper/style/BorderStyleMapper.hpp
deleted file mode 100644
index 40a3e883..00000000
--- a/include/cru/ui/mapper/style/BorderStyleMapper.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-#include "../Mapper.hpp"
-#include "cru/ui/style/ApplyBorderStyleInfo.hpp"
-#include "cru/xml/XmlNode.hpp"
-
-namespace cru::ui::mapper::style {
-class CRU_UI_API BorderStyleMapper
- : BasicMapper<ui::style::ApplyBorderStyleInfo> {
- public:
- CRU_DEFAULT_CONSTRUCTOR_DESTRUCTOR(BorderStyleMapper)
-
- public:
- bool SupportMapFromXml() override { return true; }
- bool XmlElementIsOfThisType(xml::XmlElementNode* node) override;
-
- protected:
- std::unique_ptr<ui::style::ApplyBorderStyleInfo> DoMapFromXml(
- xml::XmlElementNode* node) override;
-};
-} // namespace cru::ui::mapper::style