blob: 40653118c1d3eabbdc92a1015b24d7066da5c3bb (
plain)
1
2
3
4
5
6
7
8
|
#include "cru/ui/mapper/Mapper.h"
#include <typeindex>
namespace cru::ui::mapper {
MapperBase::MapperBase(std::type_index type_index)
: type_index_(std::move(type_index)) {}
} // namespace cru::ui::mapper
|