blob: f02e853fba49ba8407c59f21efcdc361e6b9d90a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __HYPERNEAT_POINTER_HPP__
#define __HYPERNEAT_POINTER_HPP__
#include <memory>
namespace hyperneat
{
template <class T>
using Pointer = std::unique_ptr<T>;
}
#endif
|