]> Creatis software - bbtk.git/blob - kernel/src/bbtkAtomicBlackBoxDescriptor.h
d732b90df7eacdf988f6c3a25135daf401714531
[bbtk.git] / kernel / src / bbtkAtomicBlackBoxDescriptor.h
1 /*=========================================================================
2                                                                                 
3   Program:   bbtk
4   Module:    $RCSfile: bbtkAtomicBlackBoxDescriptor.h,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::AtomicBlackBoxDescriptor : structure containing the description of a AtomicBlackBox input (name, description, type, functor)
22  */
23 /**
24  * \class bbtk::AtomicBlackBoxDescriptor
25  * \brief Structure containing the description of a AtomicBlackBox input (name, description, type, functor)
26  */
27  
28 #ifndef __bbtkAtomicBlackBoxDescriptor_h__
29 #define __bbtkAtomicBlackBoxDescriptor_h__
30
31 #include "bbtkBlackBoxDescriptor.h"
32 #include "bbtkAtomicBlackBoxInputDescriptor.h"
33 #include "bbtkAtomicBlackBoxOutputDescriptor.h"
34
35 namespace bbtk
36 {
37
38
39   class BBTK_EXPORT AtomicBlackBoxDescriptor : public bbtk::BlackBoxDescriptor
40   {
41   public:
42     AtomicBlackBoxDescriptor() 
43     {  
44       // Creates the input 'BoxProcessMode'
45       AddInputDescriptor
46         (new 
47          bbtk::AtomicBlackBoxInputDescriptor
48          (typeid(AtomicBlackBoxDescriptor),
49           "BoxProcessMode",
50           "Sets the processing mode of the box (Pipeline | Always | Reactive)", 
51           new bbtk::AtomicBlackBoxTGetFunctor<BlackBox,std::string,std::string>(&BlackBox::bbGetInputBoxProcessMode), 
52           new bbtk::AtomicBlackBoxTSetFunctor<BlackBox,std::string,std::string>(&BlackBox::bbSetInputBoxProcessMode) ) );
53       // Creates the input 'BoxExecute'
54       AddInputDescriptor
55         (new
56          bbtk::AtomicBlackBoxInputDescriptor
57          (typeid(AtomicBlackBoxDescriptor),
58           "BoxExecute",
59           "Any signal received by this input executes the box", 
60           new bbtk::AtomicBlackBoxTGetFunctor<BlackBox,Void,Void>(&BlackBox::bbGetInputBoxExecute), 
61           new bbtk::AtomicBlackBoxTSetFunctor<BlackBox,Void,Void>(&BlackBox::bbSetInputBoxExecute) ) );
62       // Creates the output 'BoxChange'      
63       AddOutputDescriptor
64         (new 
65          bbtk::AtomicBlackBoxOutputDescriptor
66          (typeid(AtomicBlackBoxDescriptor),
67           "BoxChange",
68           "Signal modifications of the box", 
69           new bbtk::AtomicBlackBoxTGetFunctor<BlackBox,Void,Void>(&BlackBox::bbGetOutputBoxChange), 
70           new bbtk::AtomicBlackBoxTSetFunctor<BlackBox,Void,Void>(&BlackBox::bbSetOutputBoxChange) ) );
71       //
72       AddToCategory("atomic box");
73     }
74   };
75     
76 }
77 // namespace bbtk
78 #endif