How to implement 'Redo' and 'Undo' function? It doesn't matter use any language.
quan
Select an image from your device to upload
The Memento design pattern could be used to implement Redo and Undo functionality in any OO language. Its a classic GoF design pattern. In brief, the Memento object is responsible for capturing and storing just enough information to restore the state of the object that needs to support undo/redo feature.
Take a look at
http://www.dofactory.com/Patterns/PatternMemento.aspx