File: blockLongEffect.cc

package info (click to toggle)
libosl 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 273,976 kB
  • sloc: cpp: 129,625; ansic: 7,145; ruby: 1,290; makefile: 558; perl: 413; sh: 35
file content (17 lines) | stat: -rw-r--r-- 572 bytes parent folder | download | duplicates (3)
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: