diff options
author | HampusM <hampus@hampusmat.com> | 2022-04-28 22:01:40 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-04-28 22:01:40 +0200 |
commit | 1f97ab2ef846462d7a599fbd3ac9415da8f0953b (patch) | |
tree | 10641b65e57f642aaa402d2b4b945496cc7c6bfc /src/container.cpp | |
parent | d2a87d5803c7aaa9a47791a5a0f1494c19671ebc (diff) |
build: change to static library
Diffstat (limited to 'src/container.cpp')
-rw-r--r-- | src/container.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
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<IGenericWrapper> &wrapper +) noexcept +{ + _bindings.insert({ type, wrapper }); +} + +} // namespace yacppdic |