/*========================================================================= Program: bbtk Module: $RCSfile: bbtkAtomicBlackBoxDescriptor.h,v $ Language: C++ Date: $Date: 2008/04/18 12:59:14 $ Version: $Revision: 1.3 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ /** * \file * \brief Class bbtk::AtomicBlackBoxDescriptor : structure containing the description of a AtomicBlackBox input (name, description, type, functor) */ /** * \class bbtk::AtomicBlackBoxDescriptor * \brief Structure containing the description of a AtomicBlackBox input (name, description, type, functor) */ #ifndef __bbtkAtomicBlackBoxDescriptor_h__ #define __bbtkAtomicBlackBoxDescriptor_h__ #include "bbtkBlackBoxDescriptor.h" #include "bbtkAtomicBlackBoxInputDescriptor.h" #include "bbtkAtomicBlackBoxOutputDescriptor.h" namespace bbtk { class BBTK_EXPORT AtomicBlackBoxDescriptor : public bbtk::BlackBoxDescriptor { public: /// Releases the descriptor // virtual void Release(bool release_package = true); protected: AtomicBlackBoxDescriptor(); virtual ~AtomicBlackBoxDescriptor(); virtual AtomicBlackBoxDescriptor::Pointer GetInstance() const = 0; }; } // namespace bbtk #endif