/usr/include/osl/rating/ratingEnv.h is in libosl-dev 0.6.0-3.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | /* ratingEnv.h
*/
#ifndef _RATINGENV_H
#define _RATINGENV_H
#include "osl/container/moveStack.h"
#include "osl/container/square8.h"
#include "osl/container/pieceMask.h"
#include "osl/state/numEffectState.h"
#include "osl/progress/progress16.h"
namespace osl
{
namespace rating
{
class RatingEnv
{
public:
MoveStack history;
Square8 sendoffs;
PieceMask my_pin, op_pin;
int attack_count_for_turn;
Progress16 progress;
mutable CArray<signed char,Square::SIZE> counteffect2_cache;
mutable CArray<int,Square::SIZE> pattern_cache;
void update(const NumEffectState& new_state, Move last_move);
void make(const NumEffectState& new_state);
void make(const NumEffectState& new_state,
const PieceMask& my_pin, const PieceMask& op_pin, Progress16);
};
}
using rating::RatingEnv;
}
#endif /* _RATINGENV_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End:
|