// ========================================================================= // @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co) // ========================================================================= #ifndef __cpPlugins__Functor__h__ #define __cpPlugins__Functor__h__ #include namespace cpPlugins { /*! \brief */ class CPPLUGINS_EXPORT Functor : public ProcessObject { cpPluginsTypeMacro( Functor, ProcessObject ); public: virtual std::set< std::string > GetAllOutputsNames( ) const override; protected: Functor( ); virtual ~Functor( ); }; // end class } // end namespace #endif // __cpPlugins__Functor__h__ // eof - $RCSfile$