diff options
Diffstat (limited to 'NewKit/Function.hpp')
| -rw-r--r-- | NewKit/Function.hpp | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/NewKit/Function.hpp b/NewKit/Function.hpp new file mode 100644 index 00000000..772755e1 --- /dev/null +++ b/NewKit/Function.hpp @@ -0,0 +1,49 @@ +#ifndef _INC_FUNCTION_HPP__ +#define _INC_FUNCTION_HPP__ + +#include <NewKit/Defines.hpp> + +namespace hCore +{ + template <typename T, typename... Args> + class Function final + { + public: + Function() = default; + + public: + explicit Function(T (*Fn)(Args... args)) + : m_Fn(Fn) + {} + + ~Function() = default; + + Function &operator=(const Function &) = default; + Function(const Function &) = default; + + template <typename... XArgs> T operator()(Args... args) + { + return m_Fn(args...); + } + + template <typename... XArgs> T Call(Args... args) + { + return m_Fn(args...); + } + + operator bool() + { + return m_Fn; + } + bool operator!() + { + return !m_Fn; + } + + private: + T (*m_Fn)(Args... args); + + }; +} // namespace hCore + +#endif // !_INC_FUNCTION_HPP__ |
