aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/mapper/style/IStylerMapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/mapper/style/IStylerMapper.h')
-rw-r--r--include/cru/ui/mapper/style/IStylerMapper.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/cru/ui/mapper/style/IStylerMapper.h b/include/cru/ui/mapper/style/IStylerMapper.h
deleted file mode 100644
index ce9c4243..00000000
--- a/include/cru/ui/mapper/style/IStylerMapper.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-#include "../../Base.h"
-#include "cru/base/ClonePtr.h"
-#include "cru/ui/mapper/Mapper.h"
-#include "cru/ui/style/Styler.h"
-#include "cru/base/xml/XmlNode.h"
-
-namespace cru::ui::mapper::style {
-struct CRU_UI_API IStylerMapper : virtual Interface {
- bool XmlElementIsOfThisType(xml::XmlElementNode* node) {
- return dynamic_cast<MapperBase*>(this)->XmlElementIsOfThisType(node);
- }
-
- virtual ClonePtr<ui::style::Styler> MapStylerFromXml(
- xml::XmlElementNode* node) = 0;
-};
-} // namespace cru::ui::mapper::style