]> Creatis software - bbtk.git/blob - kernel/src/bbtkAtomicBlackBoxDescriptor.h
=== MAJOR RELEASE ====
[bbtk.git] / kernel / src / bbtkAtomicBlackBoxDescriptor.h
1 /*=========================================================================
2                                                                                 
3   Program:   bbtk
4   Module:    $RCSfile: bbtkAtomicBlackBoxDescriptor.h,v $
5   Language:  C++
6   Date:      $Date: 2008/04/18 12:59:14 $
7   Version:   $Revision: 1.3 $
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     /// Releases the descriptor
43     //    virtual void Release(bool release_package = true);
44
45   protected:
46     AtomicBlackBoxDescriptor();
47     virtual ~AtomicBlackBoxDescriptor();
48     virtual AtomicBlackBoxDescriptor::Pointer GetInstance() const = 0;
49
50   };
51 }
52 // namespace bbtk
53 #endif