X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fstd%2Fsrc%2FbbstdGetVectorElement.h;h=53182c517522a9aa2117c9bd18149b8f9c7f4e83;hb=73922461adf24cf7d6539db9f752fc4e44db462d;hp=438caea889e0b99ae21f732cd6e6fb96e75ae18c;hpb=a33ac70f8c32efdcef70b39a444117e1901086ca;p=bbtk.git diff --git a/packages/std/src/bbstdGetVectorElement.h b/packages/std/src/bbstdGetVectorElement.h index 438caea..53182c5 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: 2009/05/14 14:43:38 $ - Version: $Revision: 1.5 $ + Date: $Date: 2009/07/23 12:27:36 $ + Version: $Revision: 1.6 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -55,7 +55,7 @@ namespace bbstd // BlackBox description BBTK_BEGIN_DESCRIBE_TEMPLATE_BLACK_BOX(GetVectorElement,bbtk::AtomicBlackBox); BBTK_NAME("Get"+bbtk::HumanTypeName >()+"Element"); - BBTK_AUTHOR("jpr@creatis.insa-lyon.fr"); + BBTK_AUTHOR("info-dev@creatis.insa-lyon.fr"); // BBTK_DEFAULT_ADAPTOR(); BBTK_DESCRIPTION("Gets the i-th element from the input vector ("+bbtk::TypeName >()); typedef std::vector Tvector; @@ -69,12 +69,8 @@ namespace bbstd template void GetVectorElement::DoIt() { - // std::string out; - // std::ostringstream oss; - int i = bbGetInputI(); - //oss << bbGetInputIn()[i]; - //bbSetOutputOut(out.str()); - bbSetOutputOut(bbGetInputIn()[i]); + // unsigned int i = bbGetInputI(); + bbSetOutputOut(bbGetInputIn()[bbGetInputI()]); } //=================================================================