--- queensgui/src/solutionvector.h 2007/07/19 21:34:15 1 +++ queensgui/src/solutionvector.h 2007/07/19 22:26:42 2 @@ -30,8 +30,8 @@ */ class SolutionVector : public SolutionContainer{ protected: - std::vector solutions; - typedef std::vector::iterator VIt; + std::vector solutions; + typedef std::vector::iterator VIt; void uniqueSolutionsWorker(int rot, bool mirror); int total; @@ -43,8 +43,8 @@ int numSolutions(); int totalSolutions(); - Solution solution(int index); - void addSolution(Solution sol); + Solution* solution(int index); + void addSolution(Solution* sol); }; #endif