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