aboutsummaryrefslogtreecommitdiff
path: root/src/DI/container.cpp
blob: 1b5dc556570c736b086c650adbe251636ca6db17 (plain)
1
2
3
4
5
6
#include "container.hpp"

void Container::add(BaseObjectType type, const WrapperPtr<IGenericWrapper> &wrapper) noexcept
{
	_bindings.insert({type, wrapper});
}