// ========================================================================= // @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co) // ========================================================================= #include // ------------------------------------------------------------------------- std::set< std::string > cpPlugins::Functor:: GetAllOutputsNames( ) const { std::set< std::string > r = this->Superclass::GetAllOutputsNames( ); r.insert( "Functor" ); return( r ); } // ------------------------------------------------------------------------- cpPlugins::Functor:: Functor( ) : Superclass( ) { } // ------------------------------------------------------------------------- cpPlugins::Functor:: ~Functor( ) { } // eof - $RCSfile$