diff options
Diffstat (limited to 'include/HyperNeat/Utils/Function.hpp')
-rw-r--r-- | include/HyperNeat/Utils/Function.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/HyperNeat/Utils/Function.hpp b/include/HyperNeat/Utils/Function.hpp new file mode 100644 index 0000000..ebcb27b --- /dev/null +++ b/include/HyperNeat/Utils/Function.hpp @@ -0,0 +1,12 @@ +#ifndef __HYPERNEAT_FUNCTION_HPP__ +#define __HYPERNEAT_FUNCTION_HPP__ + +#include <functional> + +namespace hyperneat +{ + template <class F> + using Function = std::function<F>; +} + +#endif |