]> Creatis software - clitk.git/commitdiff
Functionality to delete last image
authorbharath <bharath>
Thu, 12 Aug 2010 18:38:41 +0000 (18:38 +0000)
committerbharath <bharath>
Thu, 12 Aug 2010 18:38:41 +0000 (18:38 +0000)
common/clitkImageToImageGenericFilterBase.cxx

index 93b82fdd0f0559f22ddceed72695867d6729cd48..259ae04223cd1369dd69ea9d54f159d3a44492a6 100644 (file)
@@ -319,4 +319,16 @@ void clitk::ImageToImageGenericFilterBase::MustStop()
 //--------------------------------------------------------------------
 
 
+//--------------------------------------------------------------------
+void clitk::ImageToImageGenericFilterBase::DeleteLastOutputImage()
+{
+  if (m_OutputVVImages.size()>1) {
+   m_OutputVVImages.pop_back();
+  }
+}
+//--------------------------------------------------------------------
+
+
+//--------------------------------------------------------------------
+