diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-09 22:52:21 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:55 +0200 |
commit | 09848ad31af6a1c70d64fccee711e231afb5a77f (patch) | |
tree | 734f69302959bfd6e0ac12fff1ac7f94b59a4190 /src/DI/object_type.hpp | |
parent | e0eaff89b5f3f289bf5d560ea64b969c90d32d18 (diff) |
refactor: add error handling for the container get method
Diffstat (limited to 'src/DI/object_type.hpp')
-rw-r--r-- | src/DI/object_type.hpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/DI/object_type.hpp b/src/DI/object_type.hpp index f690a64..3910c03 100644 --- a/src/DI/object_type.hpp +++ b/src/DI/object_type.hpp @@ -1,15 +1,18 @@ #pragma once +#include <string_view> #include <typeinfo> class BaseObjectType { public: - explicit BaseObjectType(const std::type_info &type_info); + explicit BaseObjectType(const std::type_info &type_info) noexcept; - bool operator==(const BaseObjectType &object_type) const; + bool operator==(const BaseObjectType &object_type) const noexcept; - [[nodiscard]] std::size_t hash() const; + [[nodiscard]] std::size_t hash() const noexcept; + + [[nodiscard]] std::string_view name() const noexcept; private: const std::type_info &_type_info; |