All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
searchInfo.h
Go to the documentation of this file.
1 /* searchInfo.h
2  */
3 #ifndef OSL_RECORD_SEARCHINFO_H
4 #define OSL_RECORD_SEARCHINFO_H
5 
6 #include "osl/move.h"
7 #include "osl/stl/vector.h"
8 #include <string>
9 
10 namespace osl
11 {
12  namespace record
13  {
14  struct SearchInfo
15  {
16  int value;
17  vector<Move> moves;
19  {
20  }
21 
22  bool isValid() const {return !moves.empty();}
23  };
24  }
25 } // namespace osl
26 
27 #endif /* OSL_RECORD_SEARCHINFO_H */
28 // ;;; Local Variables:
29 // ;;; mode:c++
30 // ;;; c-basic-offset:2
31 // ;;; End: