]> Creatis software - cpPlugins.git/blobdiff - lib/cpExtensions/Visualization/ImageBlender.h
...
[cpPlugins.git] / lib / cpExtensions / Visualization / ImageBlender.h
index c49c62e8a142e424ff81d11614261f38eb94af9d..e4bf27c5bff9aef3653d620ee94e521d7531daa8 100644 (file)
@@ -24,6 +24,8 @@ namespace cpExtensions
     public:
       static Self* New( );
 
+      unsigned int GetNumberOfInputs( );
+
     protected:
       ImageBlender( );
       virtual ~ImageBlender( );
@@ -33,6 +35,11 @@ namespace cpExtensions
         vtkInformationVector** inputVector,
         vtkInformationVector* outputVector
         );
+      int RequestData(
+        vtkInformation* request,
+        vtkInformationVector** inputVector,
+        vtkInformationVector* outputVector
+        );
       void ThreadedRequestData(
         vtkInformation* request,
         vtkInformationVector** inputVector,
@@ -46,6 +53,9 @@ namespace cpExtensions
       // Purposely not implemented.
       ImageBlender( const Self& other );
       void operator=( const Self& other );
+
+    protected:
+      std::vector< double > m_Ranges;
     };
 
   } // ecapseman