diff options
author | HampusM <hampus@hampusmat.com> | 2022-04-30 16:28:13 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:58 +0200 |
commit | 40d02748924aa7c48b04cf948204d8dacdfbbc74 (patch) | |
tree | 4d07a3703207295799b02cef52618a8f0c820542 /src/DI/container.cpp | |
parent | db6edcd473a684420e9a7611b24462df21165c1b (diff) |
refactor: replace DI files with the yacppdic library
Diffstat (limited to 'src/DI/container.cpp')
-rw-r--r-- | src/DI/container.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/DI/container.cpp b/src/DI/container.cpp deleted file mode 100644 index f27b1fa..0000000 --- a/src/DI/container.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include "container.hpp" - -void Container::add( - BaseObjectType type, - const WrapperPtr<IGenericWrapper> &wrapper -) noexcept -{ - _bindings.insert({ type, wrapper }); -} |