]> Creatis software - bbtk.git/blob - kernel/src/bbtkComplexBlackBoxOutputDescriptor.h
62f2a9dca2a17258f51a44b948f8591046b03860
[bbtk.git] / kernel / src / bbtkComplexBlackBoxOutputDescriptor.h
1 /*=========================================================================
2                                                                                 
3   Program:   bbtk
4   Module:    $RCSfile: bbtkComplexBlackBoxOutputDescriptor.h,v $
5   Language:  C++
6   Date:      $Date: 2008/02/06 14:14:22 $
7   Version:   $Revision: 1.2 $
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::ComplexBlackBoxOutputDescriptor : structure containing the description of a ComplexBlackBox output (name, description, type, mapping)
22  */
23 /**
24  * \class bbtk::ComplexBlackBoxOutputDescriptor
25  * \brief Structure containing the description of a ComplexBlackBox output (name, description, type, mapping)
26  */
27
28 #ifndef __bbtkComplexBlackBoxOutputDescriptor_h__
29 #define __bbtkComplexBlackBoxOutputDescriptor_h__
30
31 #include "bbtkBlackBoxOutputDescriptor.h"
32 #include "bbtkMessageManager.h"
33 //#include "bbtkSystem.h"
34
35 namespace bbtk
36 {
37
38
39   class BBTK_EXPORT ComplexBlackBoxOutputDescriptor : 
40     public bbtk::BlackBoxOutputDescriptor
41   {
42   public:
43       
44     ComplexBlackBoxOutputDescriptor( TypeInfo creator_type_info,
45                                      const std::string& name,
46                                      const std::string& description,
47                                      const std::string& target,
48                                      const std::string& output,
49                                      TypeInfo type);
50     
51     ~ComplexBlackBoxOutputDescriptor();
52     
53     /// Returns the type of the output
54     TypeInfo GetTypeInfo() const { return mType; }
55     /// Returns the name of the type of the output    
56     std::string GetTypeName() const { return TypeName(mType); }
57     /// Returns the name of the type of the output    
58     std::string GetHumanTypeName() const { return HumanTypeName(mType); }
59     /// 
60     bool IsPointerType() const { return false; }
61     
62
63     /// Returns the target black box 
64     const std::string& GetTarget() const { return mTarget; }
65     /// Returns the output 
66     const std::string& GetOutput() const { return mOutput; }
67         
68   private:
69     /// Default ctor is private 
70     ComplexBlackBoxOutputDescriptor() : 
71       BlackBoxOutputDescriptor(typeid(void),"",""), 
72       mType(typeid(void))  {}
73     std::string mTarget;
74     std::string mOutput;
75     TypeInfo mType;
76   };
77
78 }
79 // namespace bbtk
80 #endif