From ea8cc60dc4af9b88d13f4a143986a3fad7e1691a Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 27 Mar 2022 20:22:52 +0200 Subject: refactor: clean up DI code --- src/DI/auto_wirable.hpp | 9 +-------- src/DI/container.hpp | 2 +- src/DI/object_type.hpp | 10 ++-------- 3 files changed, 4 insertions(+), 17 deletions(-) (limited to 'src/DI') diff --git a/src/DI/auto_wirable.hpp b/src/DI/auto_wirable.hpp index a903242..178158a 100644 --- a/src/DI/auto_wirable.hpp +++ b/src/DI/auto_wirable.hpp @@ -4,15 +4,8 @@ #include -// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions) -class IGenericAutoWirable -{ -public: - virtual ~IGenericAutoWirable() noexcept = default; -}; - template -class IAutoWirable : public IGenericAutoWirable +class IAutoWirable { public: static Interface resolve() noexcept; diff --git a/src/DI/container.hpp b/src/DI/container.hpp index 974780a..2efb265 100644 --- a/src/DI/container.hpp +++ b/src/DI/container.hpp @@ -34,7 +34,7 @@ public: template BindingBuilder bind() noexcept; - template >> + template >> std::shared_ptr get() const noexcept; template >> diff --git a/src/DI/object_type.hpp b/src/DI/object_type.hpp index 84bb287..6b27682 100644 --- a/src/DI/object_type.hpp +++ b/src/DI/object_type.hpp @@ -25,14 +25,8 @@ public: ObjectType() noexcept : BaseObjectType(typeid(Object)) {} }; -class IObjectTypeHasher +class ObjectTypeHasher { public: - virtual std::size_t operator()(const BaseObjectType &object_type) const noexcept = 0; -}; - -class ObjectTypeHasher : public IObjectTypeHasher -{ -public: - std::size_t operator()(const BaseObjectType &object_type) const noexcept override; + std::size_t operator()(const BaseObjectType &object_type) const noexcept; }; -- cgit v1.2.3-18-g5258