1 /*=========================================================================
3 Module: $RCSfile: bbstdCast.h,v $
5 Date: $Date: 2009/05/14 14:43:38 $
6 Version: $Revision: 1.7 $
7 =========================================================================*/
9 /* ---------------------------------------------------------------------
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
14 * This software is governed by the CeCILL-B license under French law and
15 * abiding by the rules of distribution of free software. You can use,
16 * modify and/ or redistribute the software under the terms of the CeCILL-B
17 * license as circulated by CEA, CNRS and INRIA at the following URL
18 * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
19 * or in the file LICENSE.txt.
21 * As a counterpart to the access to the source code and rights to copy,
22 * modify and redistribute granted by the license, users are provided only
23 * with a limited warranty and the software's author, the holder of the
24 * economic rights, and the successive licensors have only limited
27 * The fact that you are presently reading this means that you have had
28 * knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */
32 #ifndef __bbstdCast_h_INCLUDED__
33 #define __bbstdCast_h_INCLUDED__
35 #include "bbtkAtomicBlackBox.h"
36 #include "bbstd_EXPORT.h"
41 //=================================================================
42 // BlackBox declaration
43 template <class T, class U>
44 class bbstd_EXPORT Cast : public bbtk::AtomicBlackBox
46 BBTK_TEMPLATE2_BLACK_BOX_INTERFACE(Cast,bbtk::AtomicBlackBox,T,U);
47 BBTK_DECLARE_INPUT(In,T);
48 BBTK_DECLARE_OUTPUT(Out,U);
51 bbtkDebugMessage("Data",5,"bbstd::Cast In = "
52 <<bbGetInputIn()<<" <"<<bbtk::HumanTypeName<T>()
54 bbSetOutputOut( static_cast<U>(bbGetInputIn()) );
55 bbtkDebugMessage("Data",5,"bbstd::Cast Out = "
56 <<(U)bbGetInputIn()<<" <"<<bbtk::HumanTypeName<U>()
60 //=================================================================
65 //=================================================================
66 // BlackBox description
67 BBTK_BEGIN_DESCRIBE_TEMPLATE2_BLACK_BOX(Cast,bbtk::AtomicBlackBox);
68 BBTK_NAME("Cast"+bbtk::HumanTypeName<T1>()+"To"+bbtk::HumanTypeName<T2>());
69 BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
70 BBTK_DESCRIPTION("Static cast from "+bbtk::HumanTypeName<T1>()+" ("
71 +bbtk::TypeName<T1>()+") to "+bbtk::HumanTypeName<T2>()
72 +" ("+bbtk::TypeName<T2>()+")");
73 BBTK_DEFAULT_ADAPTOR();
74 BBTK_TEMPLATE2_INPUT(Cast,In,"Input",T1);
75 BBTK_TEMPLATE2_OUTPUT(Cast,Out,"Output",T2);
76 BBTK_END_DESCRIBE_TEMPLATE2_BLACK_BOX(Cast);
77 //=================================================================
79 template <class T, class U> void Cast<T,U>::bbUserSetDefaultValues() {}
80 template <class T, class U> void Cast<T,U>::bbUserInitializeProcessing() {}
81 template <class T, class U> void Cast<T,U>::bbUserFinalizeProcessing() {}
86 #endif // __bbstdCast_h_INCLUDED__