]> Creatis software - bbtk.git/blob - kernel/src/bbtkAtomicBlackBoxInputDescriptor.cxx
b0c6e8c9a963cfb49c392ae75a156eaef41b1433
[bbtk.git] / kernel / src / bbtkAtomicBlackBoxInputDescriptor.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   bbtk
4   Module:    $RCSfile: bbtkAtomicBlackBoxInputDescriptor.cxx,v $
5   Language:  C++
6   Date:      $Date: 2008/02/07 11:06:37 $
7   Version:   $Revision: 1.1 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 /**
20  *  \file 
21  *  \brief Class bbtk::AtomicBlackBoxInputDescriptor : structure containing the description of a AtomicBlackBox input (name, description, type, functor)
22  */
23 #include "bbtkAtomicBlackBoxInputDescriptor.h"
24
25
26 namespace bbtk
27 {
28   
29   AtomicBlackBoxInputDescriptor::
30   AtomicBlackBoxInputDescriptor( TypeInfo creator_type_info,
31                                const std::string& name,
32                                const std::string& description,
33                                AtomicBlackBoxGetFunctor* getfunctor,
34                                AtomicBlackBoxSetFunctor* setfunctor,
35                                bool copy_construct) 
36     : 
37     BlackBoxInputDescriptor(creator_type_info,
38                             name,description,MANDATORY,copy_construct),
39     mGetFunctor(getfunctor),
40     mSetFunctor(setfunctor)
41   {  
42     bbtkDebugMessage("Kernel",9,
43                      "AtomicBlackBoxInputDescriptor::"
44                      <<"AtomicBlackBoxInputDescriptor(\""
45                      <<name<<"\",\""<<description<<"\","
46                      <<getfunctor<<","<<setfunctor<<","
47                      <<copy_construct<<")"<<std::endl);
48   }
49
50
51
52   AtomicBlackBoxInputDescriptor::~AtomicBlackBoxInputDescriptor()
53   {
54     bbtkDebugMessage("Kernel",9,
55                      "AtomicBlackBoxInputDescriptor::"
56                      <<"~AtomicBlackBoxInputDescriptor(\""
57                      <<GetName()<<"\",\""<<GetDescription()<<"\","
58                      <<mGetFunctor<<","<<mSetFunctor<<")"<<std::endl);
59   } 
60 }