X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=packages%2Fstd%2Fsrc%2FbbstdCast.h;h=2f40c18afeb6aa055f681a26dbd730c8e8042457;hb=586347fdceaf64c3796be5c95d69ed1a18e3a16d;hp=81f6e20c5bc25b79c2d04f1a8b00731bcb0b9cfc;hpb=487dbfe275c2c6fa7454a000503082bfca54396b;p=bbtk.git diff --git a/packages/std/src/bbstdCast.h b/packages/std/src/bbstdCast.h index 81f6e20..2f40c18 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: 2009/05/14 14:43:38 $ + Version: $Revision: 1.7 $ +=========================================================================*/ + +/* --------------------------------------------------------------------- + +* 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,8 +63,8 @@ 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()+" (" @@ -44,6 +76,10 @@ namespace bbstd BBTK_END_DESCRIBE_TEMPLATE2_BLACK_BOX(Cast); //================================================================= + template void Cast::bbUserSetDefaultValues() {} + template void Cast::bbUserInitializeProcessing() {} + template void Cast::bbUserFinalizeProcessing() {} + } // namespace bbstd