/*! * @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::AddImagesToURContainer(VTKImageDataPointerType imgUndo, VTKImageDataPointerType imgRedo, ImageMManager* imMManager) { } // ---------------------------------------------------------------------------------- void ImageDequeUR::CleanURContainerFromIndex(const int& index) { } // ---------------------------------------------------------------------------------- void ImageDequeUR::ManageMemory() { } // ---------------------------------------------------------------------------------- ImageInfoUR* ImageDequeUR::Undo() { return NULL; } // ---------------------------------------------------------------------------------- ImageInfoUR* ImageDequeUR::Redo() { return NULL; } // ----------------------------------------------------------------------------------