![]() |
Cinnamon
1.1
chess engine
|
00001 #ifndef UCI_H_ 00002 #define UCI_H_ 00003 00004 #include "IterativeDeeping.h" 00005 #include "Perft.h" 00006 00007 class Uci { 00008 public: 00009 Uci(); 00010 virtual ~Uci(); 00011 00012 private: 00013 bool uciMode; 00014 void listner(); 00015 IterativeDeeping* it; 00016 void getToken(istringstream& uip,string& token); 00017 }; 00018 #endif 00019