My Project
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/basic_type.h"
7#include <vector>
8#include <string>
9
10namespace osl
11{
12 namespace record
13 {
15 {
16 int value;
17 std::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:
std::vector< Move > moves
Definition searchInfo.h:17