]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageDequeUR.cxx
DFCH: ManualPaint + imageUndoRedo -> 50% tested. (Save Images undo and redo) :) :)
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / imageUndoRedo / imageDequeUR.cxx
1 #include "imageDequeUR.h"
2
3 ImageDequeUR::ImageDequeUR() {
4
5 }
6 ImageDequeUR::~ImageDequeUR() {
7
8 }
9 void ImageDequeUR::AddImageToUndoContainer(ImageType* img,
10                 const RegionS& region) {
11 }
12 void ImageDequeUR::AddImageToRedoContainer(ImageType* img,
13                 const RegionS& region) {
14 }
15 void ImageDequeUR::CleanUndoContainerFromIndex(const int& index) {
16
17 }
18 void ImageDequeUR::CleanRedoContainerFromIndex(const int& index) {
19 }
20 void ImageDequeUR::CleanContainers() {
21
22 }
23
24 ImageInfoUR* ImageDequeUR::Undo() {
25         ImageInfoUR* im;
26         return im;
27 }
28 ImageInfoUR* ImageDequeUR::Redo() {
29         ImageInfoUR* im;
30         return im;
31 }