aboutsummaryrefslogtreecommitdiff
path: root/src/DI/object_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/DI/object_type.hpp')
-rw-r--r--src/DI/object_type.hpp9
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;