caretaker.hh 205 B

1234567891011121314
  1. #ifndef CARETAKER_H
  2. #define CARETAKER_H
  3. #include "memento.hh"
  4. #include <list>
  5. class CareTaker{
  6. std::list<Memento*> mementoList;
  7. public:
  8. void add(Memento* state);
  9. Memento* get(int index);
  10. };
  11. #endif