/usr/include/osl/move_action/voidAction.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 | #ifndef _VOID_ACTION_H
#define _VOID_ACTION_H
#include "osl/piece.h"
namespace osl
{
namespace move_action
{
/**
* なにもしない.
* 主にデバッグ用
*/
class VoidAction {
public:
void simpleMove(Square, Square, Ptype, bool, Player,Move){
}
void unknownMove(Square, Square, Piece, Ptype, bool, Player,Move){
}
void dropMove(Square, Ptype, Player,Move){
}
void simpleMove(Square, Square, Ptype, bool, Player){
}
void unknownMove(Square, Square, Piece, Ptype, bool, Player){
}
void dropMove(Square, Ptype, Player){
}
};
} // namespace move_action
} // namespace osl
#endif // _VOID_ACTION_H
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End:
|