blob: 738f63ef8effa17dc47f5c493dbda8bd4d867e68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Mapper.h"
#include <cru/platform/graphics/Font.h>
namespace cru::ui::mapper {
class FontMapper : public BasicSharedPtrMapper<platform::graphics::IFont> {
CRU_UI_DECLARE_CAN_MAP_FROM_XML_ELEMENT_TAG(
Font, std::shared_ptr<platform::graphics::IFont>)
};
} // namespace cru::ui::mapper
|