aboutsummaryrefslogtreecommitdiff
path: root/src/DI/function_wrapper.tpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/DI/function_wrapper.tpp')
-rw-r--r--src/DI/function_wrapper.tpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/DI/function_wrapper.tpp b/src/DI/function_wrapper.tpp
new file mode 100644
index 0000000..4e09957
--- /dev/null
+++ b/src/DI/function_wrapper.tpp
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "function_wrapper.hpp"
+
+template <class Interface>
+Interface FunctionWrapper<Interface>::get() const
+{
+ return _func;
+}