]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Functor.cxx
Moved to version 1.0
[cpPlugins.git] / lib / cpPlugins / Functor.cxx
1 // =========================================================================
2 // @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co)
3 // =========================================================================
4
5 #include <cpPlugins/Functor.h>
6
7 // -------------------------------------------------------------------------
8 std::set< std::string > cpPlugins::Functor::
9 GetAllOutputsNames( ) const
10 {
11   std::set< std::string > r = this->Superclass::GetAllOutputsNames( );
12   r.insert( "Functor" );
13   return( r );
14 }
15
16 // -------------------------------------------------------------------------
17 cpPlugins::Functor::
18 Functor( )
19   : Superclass( )
20 {
21 }
22
23 // -------------------------------------------------------------------------
24 cpPlugins::Functor::
25 ~Functor( )
26 {
27 }
28
29 // eof - $RCSfile$