aboutsummaryrefslogtreecommitdiff
path: root/src/ui/mapper/Mapper.cpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-01-17 22:55:09 +0800
committercrupest <crupest@outlook.com>2022-01-17 22:55:09 +0800
commit67dd012c0f49898f1734c46d3bb264f59d056a8e (patch)
tree780dc9c50868a8e7b89e68b463a60745fce72ae9 /src/ui/mapper/Mapper.cpp
parent81f7d5faaaf79149070a901a4f299aee70c46379 (diff)
downloadcru-67dd012c0f49898f1734c46d3bb264f59d056a8e.tar.gz
cru-67dd012c0f49898f1734c46d3bb264f59d056a8e.tar.bz2
cru-67dd012c0f49898f1734c46d3bb264f59d056a8e.zip
...
Diffstat (limited to 'src/ui/mapper/Mapper.cpp')
-rw-r--r--src/ui/mapper/Mapper.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ui/mapper/Mapper.cpp b/src/ui/mapper/Mapper.cpp
new file mode 100644
index 00000000..93a83d8a
--- /dev/null
+++ b/src/ui/mapper/Mapper.cpp
@@ -0,0 +1,8 @@
+#include "cru/ui/mapper/Mapper.hpp"
+
+#include <typeindex>
+
+namespace cru::ui::mapper {
+MapperBase::MapperBase(std::type_index type_index)
+ : type_index_(std::move(type_index)) {}
+} // namespace cru::ui::mapper