blob: 684d0a4bd79c1e914af1272c5e81032ca3db49a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "cru/ui/mapper/ThicknessMapper.hpp"
#include "cru/xml/XmlNode.hpp"
namespace cru::ui::mapper {
bool ThicknessMapper::XmlElementIsOfThisType(xml::XmlElementNode *node) {
if (node->GetTag() == u"Thickness") {
return true;
}
return false;
}
} // namespace cru::ui::mapper
|