X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fstd%2Fsrc%2FbbstdGetVectorElement.h;h=53182c517522a9aa2117c9bd18149b8f9c7f4e83;hb=3ad1a85ddd88a3d1982477dbbb354dc63ebacd9f;hp=d49110e97408d25befb1a4a5b7cd5970578aba43;hpb=c429a5e1229f3dbc56e2d0100980c7e4a3506d89;p=bbtk.git diff --git a/packages/std/src/bbstdGetVectorElement.h b/packages/std/src/bbstdGetVectorElement.h index d49110e..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: 2008/12/12 08:55:21 $ - Version: $Revision: 1.4 $ + Date: $Date: 2009/07/23 12:27:36 $ + Version: $Revision: 1.6 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -48,7 +48,6 @@ namespace bbstd BBTK_DECLARE_OUTPUT(Out,T); BBTK_PROCESS(DoIt); void DoIt(); - virtual void bbUserConstructor(); }; //================================================================= @@ -56,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; @@ -70,18 +69,28 @@ 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()]); } //================================================================= //================================================================= template - void GetVectorElement::bbUserConstructor() + void GetVectorElement::bbUserSetDefaultValues() + { + + } + //================================================================= + //================================================================= + template + void GetVectorElement::bbUserInitializeProcessing() + { + + } + //================================================================= + //================================================================= + template + void GetVectorElement::bbUserFinalizeProcessing() { }