]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageDequeUR.cxx
v1.0.3 BUG 1404
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / imageUndoRedo / imageDequeUR.cxx
index a51a77d26f4b8ae868c51c11df7c9a7476f8b74a..0b2e41976ebf9bbcdb3dc80add1a68cc879944bf 100755 (executable)
@@ -1,33 +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(VTKImageDataPointerType img,
-               ImageMManager* imManager) {
-}
-void ImageDequeUR::AddImageToRedoContainer(VTKImageDataPointerType img,
-               ImageMManager* imMManager) {
+// ----------------------------------------------------------------------------------
+void ImageDequeUR::AddImagesToURContainer(VTKImageDataPointerType imgUndo,
+               VTKImageDataPointerType imgRedo, ImageMManager* imMManager) {
 }
-void ImageDequeUR::CleanUndoContainerFromIndex(const int& index) {
+// ----------------------------------------------------------------------------------
+void ImageDequeUR::CleanURContainerFromIndex(const int& index) {
 
 }
-void ImageDequeUR::CleanRedoContainer( ) {
-}
-void ImageDequeUR::CleanContainers() {
-
-}
-
+// ----------------------------------------------------------------------------------
 void ImageDequeUR::ManageMemory() {
 
 }
-
+// ----------------------------------------------------------------------------------
 ImageInfoUR* ImageDequeUR::Undo() {
        return NULL;
 }
+// ----------------------------------------------------------------------------------
 ImageInfoUR* ImageDequeUR::Redo() {
        return NULL;
 }
+// ----------------------------------------------------------------------------------