X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fstd%2Fsrc%2FbbstdCast.h;h=73731a930189296ff445064e6f82b3825846212d;hb=c429a5e1229f3dbc56e2d0100980c7e4a3506d89;hp=ce2df7a838b384a91fe54494030323f4f720877f;hpb=c0e5c17c45ecb106079122fcf1c7005b173092e5;p=bbtk.git diff --git a/packages/std/src/bbstdCast.h b/packages/std/src/bbstdCast.h index ce2df7a..73731a9 100644 --- a/packages/std/src/bbstdCast.h +++ b/packages/std/src/bbstdCast.h @@ -1,17 +1,49 @@ +/*========================================================================= + Program: bbtk + Module: $RCSfile: bbstdCast.h,v $ + Language: C++ + Date: $Date: 2008/12/12 08:55:20 $ + Version: $Revision: 1.6 $ +=========================================================================*/ + +/* --------------------------------------------------------------------- + +* Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale) +* Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux +* +* This software is governed by the CeCILL-B license under French law and +* abiding by the rules of distribution of free software. You can use, +* modify and/ or redistribute the software under the terms of the CeCILL-B +* license as circulated by CEA, CNRS and INRIA at the following URL +* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +* or in the file LICENSE.txt. +* +* As a counterpart to the access to the source code and rights to copy, +* modify and redistribute granted by the license, users are provided only +* with a limited warranty and the software's author, the holder of the +* economic rights, and the successive licensors have only limited +* liability. +* +* The fact that you are presently reading this means that you have had +* knowledge of the CeCILL-B license and that you accept its terms. +* ------------------------------------------------------------------------ */ + + #ifndef __bbstdCast_h_INCLUDED__ #define __bbstdCast_h_INCLUDED__ #include "bbtkAtomicBlackBox.h" +#include "bbstd_EXPORT.h" namespace bbstd { //================================================================= - // UserBlackBox declaration + // BlackBox declaration template - class Cast : public bbtk::AtomicBlackBox + class bbstd_EXPORT Cast : public bbtk::AtomicBlackBox { - BBTK_USER_BLACK_BOX_INTERFACE(Cast,bbtk::AtomicBlackBox); + BBTK_TEMPLATE2_BLACK_BOX_INTERFACE(Cast,bbtk::AtomicBlackBox,T,U); BBTK_DECLARE_INPUT(In,T); BBTK_DECLARE_OUTPUT(Out,U); BBTK_PROCESS(DoIt); @@ -31,14 +63,13 @@ namespace bbstd //================================================================= - // UserBlackBox description - BBTK_BEGIN_DESCRIBE_TEMPLATE2_BLACK_BOX(Cast); + // BlackBox description + BBTK_BEGIN_DESCRIBE_TEMPLATE2_BLACK_BOX(Cast,bbtk::AtomicBlackBox); BBTK_NAME("Cast"+bbtk::HumanTypeName()+"To"+bbtk::HumanTypeName()); BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr"); BBTK_DESCRIPTION("Static cast from "+bbtk::HumanTypeName()+" (" +bbtk::TypeName()+") to "+bbtk::HumanTypeName() +" ("+bbtk::TypeName()+")"); - BBTK_CATEGORY("adaptor"); BBTK_DEFAULT_ADAPTOR(); BBTK_TEMPLATE2_INPUT(Cast,In,"Input",T1); BBTK_TEMPLATE2_OUTPUT(Cast,Out,"Output",T2);