Main Page | Class Hierarchy | Class List | File List | Class Members

SimpleStrategy.h

00001 #include "Strategy.h"
00002 #include "Puzzle.h"
00003 
00004 #ifndef SIMPLESTRATEGY_H
00005 #define SIMPLESTRATEGY_H
00006 
00011 class SimpleStrategy : public Strategy {
00012 
00013   private:
00014 
00018     SimpleStrategy(const SimpleStrategy &s);
00019 
00023     SimpleStrategy& operator=(const SimpleStrategy &s);
00024 
00025   public:
00026 
00030     SimpleStrategy(const Puzzle &p) : Strategy(p) {}
00031 
00035     ~SimpleStrategy();
00036 
00041     void setStartCell(size_t &x, size_t &y);
00042 
00043 };
00044 #endif

Generated on Tue Aug 2 12:58:47 2005 for Generalized Sudoku Puzzle Solver by doxygen 1.3.4