Go to the documentation of this file.00001
00002
00003 #ifndef OSL_RECORD_SEARCHINFO_H
00004 #define OSL_RECORD_SEARCHINFO_H
00005
00006 #include "osl/move.h"
00007 #include "osl/stl/vector.h"
00008 #include <string>
00009
00010 namespace osl
00011 {
00012 namespace record
00013 {
00014 struct SearchInfo
00015 {
00016 int value;
00017 vector<Move> moves;
00018 SearchInfo() : value(0)
00019 {
00020 }
00021
00022 bool isValid() const {return !moves.empty();}
00023 };
00024 }
00025 }
00026
00027 #endif
00028
00029
00030
00031