]> Creatis software - creaImageIO.git/blobdiff - src/itkImageToVTKImageFilter.h
Feature #1764
[creaImageIO.git] / src / itkImageToVTKImageFilter.h
index 145c8405b37b3f7bb0c7cd037c1a0046851b240a..7144bc83df9bd83a0d47575fe5f0c444974c6a8a 100644 (file)
@@ -3,8 +3,8 @@
   Program:   Insight Segmentation & Registration Toolkit
   Module:    $RCSfile: itkImageToVTKImageFilter.h,v $
   Language:  C++
-  Date:      $Date: 2011/04/27 19:12:20 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2012/11/15 12:45:28 $
+  Version:   $Revision: 1.2 $
 
   Copyright (c) 2002 Insight Consortium. All rights reserved.
   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
@@ -79,35 +79,8 @@ public:
   /** This call delegate the update to the importer */
   void Update();
   
-   const std::vector<double>& getvtest() const
-     {
-  return m_vtest;
-     }
-
-   int testsize() 
-     {
-  return m_vtest.size();
-     }
-  
-   std::vector<double> addvector(const std::vector<double>& v) {
-          for (unsigned int i=0; i<v.size(); i++)
-          m_vtest.push_back(v[i]);
-          return m_vtest;
-      }
-   
-   const std::vector<double>& addtest(double toto)
-          {
-       m_vtest.push_back(toto);
-               return m_vtest;
-            }
-   std::vector<double> tralala()
-     {
-  std::vector<double> w;
-      for (double i=0; i<10; i++)
-            w.push_back(i);
-      return w;
-  
-     }
+
+
    
 protected:
   ImageToVTKImageFilter();