All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
allMoves.cc
Go to the documentation of this file.
3 
4 namespace osl
5 {
6  namespace move_generator
7  {
8  template void AllMoves<move_action::Store>::generate<BLACK>(NumEffectState const&,move_action::Store&);
9  template void AllMoves<move_action::Store>::generate<WHITE>(NumEffectState const&,move_action::Store&);
10  template void AllMoves<move_action::Store>::generate(Player,NumEffectState const&,move_action::Store&);
11  }
12 } // namespace osl
13 
15 generate(Player p, const NumEffectState& state, container::MoveVector& out)
16 {
18  store_t store(out);
20 }
21 
22 // ;;; Local Variables:
23 // ;;; mode:c++
24 // ;;; c-basic-offset:2
25 // ;;; End: