diff options
Diffstat (limited to 'include/HyperNeat/Utils/String.hpp')
-rw-r--r-- | include/HyperNeat/Utils/String.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/HyperNeat/Utils/String.hpp b/include/HyperNeat/Utils/String.hpp new file mode 100644 index 0000000..ab74d45 --- /dev/null +++ b/include/HyperNeat/Utils/String.hpp @@ -0,0 +1,11 @@ +#ifndef HYPERNEAT_STRING_HPP +#define HYPERNEAT_STRING_HPP + +#include <string> + +namespace hyperneat +{ + using String = std::string; +} + +#endif |