aboutsummaryrefslogtreecommitdiff
path: root/src/DI/function_wrapper.tpp
blob: 540a7aa0d8214fea8f05999849b240f732fb2f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "function_wrapper.hpp"

template <class Interface>
FunctionWrapper<Interface>::FunctionWrapper(Interface func) noexcept : _func(func)
{
}

template <class Interface>
Interface FunctionWrapper<Interface>::get() const noexcept
{
	return _func;
}