checkMoveVector.h
Go to the documentation of this file.
00001 /* checkMoveVector.h
00002  */
00003 #ifndef OSL_CHECKMOVEVECTOR_H
00004 #define OSL_CHECKMOVEVECTOR_H
00005 #include "osl/move.h"
00006 #include "osl/misc/fixedCapacityVector.h"
00007 
00008 namespace osl
00009 {
00010   namespace checkmate
00011   {
00012     enum { CheckOrEscapeMaxUniqMoves = Move::MaxUniqMoves/4 }; // 150
00013     class CheckMoveVector : public FixedCapacityVector<Move,CheckOrEscapeMaxUniqMoves> 
00014     {
00015     };
00016   }
00017 }
00018 
00019 #endif /* OSL_CHECKMOVEVECTOR_H */
00020 // ;;; Local Variables:
00021 // ;;; mode:c++
00022 // ;;; c-basic-offset:2
00023 // ;;; End:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines