diff options
author | crupest <crupest@outlook.com> | 2022-01-22 22:22:45 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-01-22 22:22:45 +0800 |
commit | 14d9efc39635dab2c6c0f791d6b0a63c92d941ee (patch) | |
tree | 0e974083611d5725a2135928749026ac237884f4 /include/cru/ui/mapper/style | |
parent | 0e71e7022ee4cfec5b27e178ee1bb7d6977f6b3e (diff) | |
download | cru-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.hpp | 20 |
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 |