]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageDequeUR.cxx
0b2e41976ebf9bbcdb3dc80add1a68cc879944bf
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / imageUndoRedo / imageDequeUR.cxx
1 /*!
2  * @file        imageDequeUR.cxx
3  * @brief       This file contains the implementation of the ImageDequeUR class.
4  * @author      Info-Dev
5  * @author      Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
6  * @date        2011-11-15
7  */
8
9 #include "imageDequeUR.h"
10
11 // ----------------------------------------------------------------------------------
12 ImageDequeUR::ImageDequeUR() {
13
14 }
15 // ----------------------------------------------------------------------------------
16 ImageDequeUR::~ImageDequeUR() {
17
18 }
19 // ----------------------------------------------------------------------------------
20 void ImageDequeUR::AddImagesToURContainer(VTKImageDataPointerType imgUndo,
21                 VTKImageDataPointerType imgRedo, ImageMManager* imMManager) {
22 }
23 // ----------------------------------------------------------------------------------
24 void ImageDequeUR::CleanURContainerFromIndex(const int& index) {
25
26 }
27 // ----------------------------------------------------------------------------------
28 void ImageDequeUR::ManageMemory() {
29
30 }
31 // ----------------------------------------------------------------------------------
32 ImageInfoUR* ImageDequeUR::Undo() {
33         return NULL;
34 }
35 // ----------------------------------------------------------------------------------
36 ImageInfoUR* ImageDequeUR::Redo() {
37         return NULL;
38 }
39 // ----------------------------------------------------------------------------------