diff options
author | HampusM <hampus@hampusmat.com> | 2022-06-09 16:47:29 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-09 16:47:29 +0200 |
commit | 27ceb30d1f65d36e99b841055b9b9bd406a354cb (patch) | |
tree | 22c99f24cf8f1c266048d786c1b8704476c12392 /include | |
parent | 2f29451fa550514423bbba502827409114c5bc0e (diff) |
refactor: put object type inside yacppdic namespace
Diffstat (limited to 'include')
-rw-r--r-- | include/yacppdic/object_type.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/yacppdic/object_type.hpp b/include/yacppdic/object_type.hpp index c1e2e27..b33bb33 100644 --- a/include/yacppdic/object_type.hpp +++ b/include/yacppdic/object_type.hpp @@ -3,6 +3,9 @@ #include <string_view> #include <typeinfo> +namespace yacppdic +{ + class BaseObjectType { public: @@ -42,3 +45,5 @@ class ObjectTypeHasher public: auto operator()(const BaseObjectType &object_type) const noexcept -> std::size_t; }; + +} // namespace yacppdic |