aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-06-09 16:47:29 +0200
committerHampusM <hampus@hampusmat.com>2022-06-09 16:47:29 +0200
commit27ceb30d1f65d36e99b841055b9b9bd406a354cb (patch)
tree22c99f24cf8f1c266048d786c1b8704476c12392 /include
parent2f29451fa550514423bbba502827409114c5bc0e (diff)
refactor: put object type inside yacppdic namespace
Diffstat (limited to 'include')
-rw-r--r--include/yacppdic/object_type.hpp5
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