import java.util.Vector; public class KnightsTourBoard { protected int m_width; protected int m_height; protected int[][] m_board; KnightsTourBoard(int width, int height) { m_board = new int[width][height]; } }