X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.h;h=744f32096c3cdd3ce2ad6bd2adf45bd0a4c1c0ff;hp=87411a44929e93ede02be81d186cf81822566e95;hb=b73ae56ee18fd995b7071745eb3a3a4c2be57916;hpb=5cbcff55cc3a2ff78dd83e7a3f94c5414946f82c diff --git a/src/uci.h b/src/uci.h index 87411a44..744f3209 100644 --- a/src/uci.h +++ b/src/uci.h @@ -23,6 +23,10 @@ #include #include +#include "types.h" + +class Position; + namespace UCI { class Option; @@ -63,6 +67,11 @@ private: void init(OptionsMap&); void loop(int argc, char* argv[]); +std::string value(Value v); +std::string square(Square s); +std::string move(Move m, bool chess960); +Move to_move(const Position& pos, std::string& str); + } // namespace UCI extern UCI::OptionsMap Options;