--- queensgui/src/solution.h 2007/07/19 22:26:42 2 +++ queensgui/src/solution.h 2007/07/19 23:44:01 4 @@ -43,12 +43,15 @@ bool operator==(const Solution& sol); bool operator!=(const Solution& sol); + bool getMatrix(int x, int y); + void setMatrix(int x, int y, bool val); + int size() {return m_size;}; void setSize(int size) {m_size = size;}; - bool matrix[MAX_SIZE][MAX_SIZE]; protected: + bool m_matrix[MAX_SIZE][MAX_SIZE]; int m_size; };