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

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