blob: 63045eefa6e96117a596eb31385b610abeeff9e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Mapper.h"
#include <string>
namespace cru::ui::mapper {
class CRU_UI_API StringMapper : public BasicMapper<std::string> {
CRU_UI_DECLARE_CAN_MAP_FROM_STRING(std::string)
CRU_UI_DECLARE_CAN_MAP_FROM_XML_ELEMENT_TAG(String, std::string)
};
} // namespace cru::ui::mapper
|