#ifndef ORIGINATOR_H #define ORIGINATOR_H #include "memento.hh" class Originator{ std::string state; public: void setState(std::string); std::string getState(); Memento* saveStateToMemento(); void getStateFromMemento(Memento*); }; #endif