#ifndef CARETAKER_H #define CARETAKER_H #include "memento.hh" #include <list> class CareTaker{ std::list<Memento*> mementoList; public: void add(Memento* state); Memento* get(int index); }; #endif