diff options
Diffstat (limited to 'src/DI/function_wrapper.tpp')
-rw-r--r-- | src/DI/function_wrapper.tpp | 9 |
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; +} |