]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageDequeUR.cxx
no message
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / imageUndoRedo / imageDequeUR.cxx
index 649bc3ea9a6791dc66f3fee9d678bf5668d8d3ee..0b2e41976ebf9bbcdb3dc80add1a68cc879944bf 100755 (executable)
@@ -1,28 +1,39 @@
+/*!
+ * @file       imageDequeUR.cxx
+ * @brief      This file contains the implementation of the ImageDequeUR class.
+ * @author     Info-Dev
+ * @author     Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
+ * @date       2011-11-15
+ */
+
 #include "imageDequeUR.h"
 
+// ----------------------------------------------------------------------------------
 ImageDequeUR::ImageDequeUR() {
 
 }
+// ----------------------------------------------------------------------------------
 ImageDequeUR::~ImageDequeUR() {
 
 }
-void ImageDequeUR::AddImageToUndoContainer(ImageType* img,
-               const RegionS& region) {
-}
-void ImageDequeUR::AddImageToRedoContainer(ImageType* img,
-               const RegionS& region) {
+// ----------------------------------------------------------------------------------
+void ImageDequeUR::AddImagesToURContainer(VTKImageDataPointerType imgUndo,
+               VTKImageDataPointerType imgRedo, ImageMManager* imMManager) {
 }
-void ImageDequeUR::CleanUndoContainerFromIndex(const unsigned int& index) {
+// ----------------------------------------------------------------------------------
+void ImageDequeUR::CleanURContainerFromIndex(const int& index) {
 
 }
-void ImageDequeUR::CleanRedoContainerFromIndex(const unsigned int& index) {
-}
+// ----------------------------------------------------------------------------------
+void ImageDequeUR::ManageMemory() {
 
-ImageInfoUR ImageDequeUR::Undo() {
-       ImageInfoUR im;
-       return im;
 }
-ImageInfoUR ImageDequeUR::Redo() {
-       ImageInfoUR im;
-       return im;
+// ----------------------------------------------------------------------------------
+ImageInfoUR* ImageDequeUR::Undo() {
+       return NULL;
+}
+// ----------------------------------------------------------------------------------
+ImageInfoUR* ImageDequeUR::Redo() {
+       return NULL;
 }
+// ----------------------------------------------------------------------------------