aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/Utils/Function.hpp
blob: ebcb27b06780706d1e92d793a582d118b9bf8887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __HYPERNEAT_FUNCTION_HPP__
#define __HYPERNEAT_FUNCTION_HPP__

#include <functional>

namespace hyperneat
{
    template <class F>
    using Function = std::function<F>;
}

#endif