22 SystemCallDB() =
default;
25 SystemCallDB(
const SystemCallDB &) =
delete;
26 SystemCallDB& operator=(
const SystemCallDB &) =
delete;
28 SystemCallDB(SystemCallDB &&other) {
29 *
this = std::move(other);
31 SystemCallDB& operator=(SystemCallDB &&other) {
32 m_map = std::move(other.m_map);
39 return const_cast<SystemCallDB&
>(*this).get(nr);
59 std::map<SystemCallNr, SystemCallPtr> m_map;