searchInfo.h
Go to the documentation of this file.
00001 /* searchInfo.h
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   }
00023 } // namespace osl
00024 
00025 #endif /* OSL_RECORD_SEARCHINFO_H */
00026 // ;;; Local Variables:
00027 // ;;; mode:c++
00028 // ;;; c-basic-offset:2
00029 // ;;; End:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines