X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=packages%2Fstd%2Fsrc%2FbbstdGetVectorElement.h;fp=packages%2Fstd%2Fsrc%2FbbstdGetVectorElement.h;h=da3f079fbfc4ee9de97f4a556324041a4e62f9a4;hb=863de4f0ad1a8aa106a4893354aae3889354722c;hp=0000000000000000000000000000000000000000;hpb=4e8626ea3721467a03645cc1edc29493761fdb29;p=bbtk.git diff --git a/packages/std/src/bbstdGetVectorElement.h b/packages/std/src/bbstdGetVectorElement.h new file mode 100644 index 0000000..da3f079 --- /dev/null +++ b/packages/std/src/bbstdGetVectorElement.h @@ -0,0 +1,60 @@ +#ifndef __bbstdGetVectorElement_INCLUDED_h__ +#define __bbstdGetVectorElement_INCLUDED_h__ + +#include "bbtkAtomicBlackBox.h" + +namespace bbstd +{ + //================================================================= + // BlackBox declaration + template + class 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_OUTPUT(Out,T); + BBTK_PROCESS(DoIt); + void DoIt(); + virtual void bbUserConstructor(); + }; + //================================================================= + + //================================================================= + // 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_DEFAULT_ADAPTOR(); + BBTK_DESCRIPTION("Gets the i-th element from the input vector ("+bbtk::TypeName >()); + typedef std::vector Tvector; + BBTK_TEMPLATE_INPUT(GetVectorElement, In,"Input",Tvector); + BBTK_TEMPLATE_OUTPUT(GetVectorElement, Out,"Output",T); + BBTK_END_DESCRIBE_TEMPLATE_BLACK_BOX(GetVectorElement); + //================================================================= + + //================================================================= + template + void GetVectorElement::DoIt() + { + // std::string out; + // std::ostringstream oss; + int i = bbGetInputI(); + //oss << bbGetInputIn()[i]; + //bbSetOutputOut(out.str()); + bbSetOutputOut(bbGetInputIn()[i]); + } + //================================================================= + + //================================================================= + template + void GetVectorElement::bbUserConstructor() + { + + } + //================================================================= + +} // namespace bbstd + +#endif //__bbstdGetVectorElement_INCLUDED_h__ +