My Project
std
osl
record
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
10
namespace
osl
11
{
12
namespace
record
13
{
14
struct
SearchInfo
15
{
16
int
value
;
17
std::vector<Move>
moves
;
18
SearchInfo
() :
value
(0)
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:
basic_type.h
osl
Definition
additionalEffect.h:6
osl::record::SearchInfo
Definition
searchInfo.h:15
osl::record::SearchInfo::moves
std::vector< Move > moves
Definition
searchInfo.h:17
osl::record::SearchInfo::SearchInfo
SearchInfo()
Definition
searchInfo.h:18
osl::record::SearchInfo::isValid
bool isValid() const
Definition
searchInfo.h:22
osl::record::SearchInfo::value
int value
Definition
searchInfo.h:16
Generated by
1.9.8