X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fstd%2Fsrc%2FbbstdGetVectorElement.h;h=2eacfc26797a485b86e95db328c752295558bf72;hb=731d9ee262e286a24e3ea2776d8e914950840a2c;hp=d85ad988e6bd06aaf964d845e0ba2ec4e3e2d1ba;hpb=315c4b62d90c40f8cccd821a5ba961bf51367bb0;p=bbtk.git diff --git a/packages/std/src/bbstdGetVectorElement.h b/packages/std/src/bbstdGetVectorElement.h index d85ad98..2eacfc2 100644 --- a/packages/std/src/bbstdGetVectorElement.h +++ b/packages/std/src/bbstdGetVectorElement.h @@ -2,8 +2,8 @@ Program: bbtk Module: $RCSfile: bbstdGetVectorElement.h,v $ Language: C++ - Date: $Date: 2011/07/02 08:00:35 $ - Version: $Revision: 1.7 $ + Date: $Date: 2011/07/22 17:42:51 $ + Version: $Revision: 1.8 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -41,14 +41,14 @@ namespace bbstd // BlackBox declaration template class bbstd_EXPORT GetVectorElement : public bbtk::AtomicBlackBox - { + { BBTK_TEMPLATE_BLACK_BOX_INTERFACE(GetVectorElement,bbtk::AtomicBlackBox,T); BBTK_DECLARE_INPUT(In,std::vector); - BBTK_DECLARE_INPUT(I,int); - BBTK_DECLARE_INPUT(ErrorValue,T); + BBTK_DECLARE_INPUT(I,int); + BBTK_DECLARE_INPUT(ErrorValue,T); BBTK_DECLARE_OUTPUT(Out,T); BBTK_PROCESS(DoIt); - void DoIt(); + void DoIt(); }; //================================================================= @@ -62,7 +62,7 @@ namespace bbstd typedef std::vector Tvector; BBTK_TEMPLATE_INPUT(GetVectorElement, In,"Input",Tvector); BBTK_TEMPLATE_INPUT(GetVectorElement, I, "Input",int); - BBTK_TEMPLATE_INPUT(GetVectorElement, ErrorValue, "ErrorValue",T); + BBTK_TEMPLATE_INPUT(GetVectorElement, ErrorValue, "ErrorValue",T); BBTK_TEMPLATE_OUTPUT(GetVectorElement,Out,"Output",T); BBTK_END_DESCRIBE_TEMPLATE_BLACK_BOX(GetVectorElement); //================================================================= @@ -76,7 +76,7 @@ namespace bbstd bbSetOutputOut( bbGetInputIn()[bbGetInputI()] ); } else { bbSetOutputOut( bbGetInputErrorValue() ); - } + } } //=================================================================