00001 #ifndef DAMEBOARD_HPP 00002 #define DAMEBOARD_HPP 00003 00004 #include "Board2D.hpp" 00005 00006 class DameBoard : public Board2D 00007 { 00008 private: 00009 00010 public: 00011 DameBoard() 00012 :Board2D(10,10) {} 00013 00014 int getDimensionLength(unsigned int dimensionIndex)const 00015 { 00016 if ( dimensionIndex == 0 ) 00017 { 00018 return 10; 00019 } 00020 if ( dimensionIndex == 1 ) 00021 { 00022 return 10; 00023 } 00024 } 00025 00026 //void move(const Move<Coords>& move); 00027 }; 00028 00034 #endif