aboutsummaryrefslogtreecommitdiff
path: root/src/container.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/container.cpp')
-rw-r--r--src/container.cpp17
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