aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/mapper/style/FontStylerMapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/mapper/style/FontStylerMapper.h')
-rw-r--r--include/cru/ui/mapper/style/FontStylerMapper.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/cru/ui/mapper/style/FontStylerMapper.h b/include/cru/ui/mapper/style/FontStylerMapper.h
deleted file mode 100644
index 6a79eb99..00000000
--- a/include/cru/ui/mapper/style/FontStylerMapper.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-#include "../Mapper.h"
-#include "IStylerMapper.h"
-
-namespace cru::ui::mapper::style {
-class FontStylerMapper : public BasicClonePtrMapper<ui::style::FontStyler>,
- public virtual IStylerMapper {
- public:
- FontStylerMapper();
- ~FontStylerMapper() override;
-
- public:
- bool SupportMapFromXml() override { return true; }
-
- ClonePtr<ui::style::Styler> MapStylerFromXml(
- xml::XmlElementNode* node) override {
- return MapFromXml(node);
- }
-
- protected:
- ClonePtr<ui::style::FontStyler> DoMapFromXml(
- xml::XmlElementNode* node) override;
-};
-} // namespace cru::ui::mapper::style