]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/ProcessObject.h
...
[cpPlugins.git] / lib / cpPlugins / Interface / ProcessObject.h
index 31a9e62daa22c5ff17451e687434b6e5c4b7f53b..ee5beddc025258d57c24e77c4faedf0de802ce60 100644 (file)
@@ -50,6 +50,18 @@ namespace cpPlugins
       template< class O >
         inline void _MakeOutput( unsigned int idx );
 
+      template< class T >
+        inline T* _Input( unsigned int idx );
+
+      template< class T >
+        inline const T* _Input( unsigned int idx ) const;
+
+      template< class T >
+        inline T* _Output( unsigned int idx );
+
+      template< class T >
+        inline const T* _Output( unsigned int idx ) const;
+
       virtual std::string _GenerateData( ) = 0;
 
     private: