From 1f97ab2ef846462d7a599fbd3ac9415da8f0953b Mon Sep 17 00:00:00 2001 From: HampusM Date: Thu, 28 Apr 2022 22:01:40 +0200 Subject: build: change to static library --- src/container.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/container.cpp (limited to 'src/container.cpp') diff --git a/src/container.cpp b/src/container.cpp new file mode 100644 index 0000000..d906f1e --- /dev/null +++ b/src/container.cpp @@ -0,0 +1,17 @@ +#include "yacppdic/container.hpp" + +#include "yacppdic/detail/internal/wrapper/function_wrapper.hpp" +#include "yacppdic/detail/internal/wrapper/object_wrapper.hpp" + +namespace yacppdic +{ + +void Container::add( + BaseObjectType type, + const WrapperPtr &wrapper +) noexcept +{ + _bindings.insert({ type, wrapper }); +} + +} // namespace yacppdic -- cgit v1.2.3-18-g5258