Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef MOVE_H #define MOVE_H #include <string.h> #include "Types.h" #include "Position.h" //using std::string; using namespace std; const string move_to_string(Move m); Move string_to_move(/*const Position & pos, */const string& str); #endif