blob: e445a7d06476913bd1018996aa0a95cfc10e3047 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include "cru/ui/mapper/MapperRegistry.hpp"
namespace cru::ui::mapper {
MapperRegistry::MapperRegistry() {}
MapperRegistry::~MapperRegistry() {
for (auto mapper : mapper_list_) {
delete mapper;
}
}
void MapperRegistry::RegisterMapper(MapperBase *mapper) {
if (std::find(mapper_list_.cbegin(), mapper_list_.cend(), mapper) !=
mapper_list_.cend()) {
throw Exception(u"This mapper is already registered.");
}
mapper_list_.push_back(mapper);
}
void MapperRegistry::UnregisterMapper(MapperBase *mapper) {
auto it = std::find(mapper_list_.begin(), mapper_list_.end(), mapper);
if (it == mapper_list_.end()) {
throw Exception(u"This mapper is not registered.");
}
mapper_list_.erase(it);
}
} // namespace cru::ui::mapper
|