]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Functor.h
Moved to version 1.0
[cpPlugins.git] / lib / cpPlugins / Functor.h
1 // =========================================================================
2 // @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co)
3 // =========================================================================
4 #ifndef __cpPlugins__Functor__h__
5 #define __cpPlugins__Functor__h__
6
7 #include <cpPlugins/ProcessObject.h>
8
9 namespace cpPlugins
10 {
11   /*! \brief 
12    */
13   class CPPLUGINS_EXPORT Functor
14     : public ProcessObject
15   {
16     cpPluginsTypeMacro( Functor, ProcessObject );
17
18   public:
19     virtual std::set< std::string > GetAllOutputsNames( ) const override;
20
21   protected:
22     Functor( );
23     virtual ~Functor( );
24   }; // end class
25 } // end namespace
26
27 #endif // __cpPlugins__Functor__h__
28
29 // eof - $RCSfile$