1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#include "osl/move_classifier/blockLongEffect.h"
namespace osl
{
// explicit template instantiation
template struct move_classifier::BlockLongEffect<BLACK,ROOK>;
template struct move_classifier::BlockLongEffect<WHITE,ROOK>;
template struct move_classifier::BlockLongEffect<BLACK,BISHOP>;
template struct move_classifier::BlockLongEffect<WHITE,BISHOP>;
template struct move_classifier::BlockLongEffect<BLACK,LANCE>;
template struct move_classifier::BlockLongEffect<WHITE,LANCE>;
}
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End:
|