From 863de4f0ad1a8aa106a4893354aae3889354722c Mon Sep 17 00:00:00 2001 From: jean-pierre roux Date: Wed, 18 Jun 2008 17:12:31 +0000 Subject: [PATCH] Acces to the i-th element of a vector --- packages/std/src/bbstdGetVectorElement.cxx | 28 ++++++++++ packages/std/src/bbstdGetVectorElement.h | 60 ++++++++++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 packages/std/src/bbstdGetVectorElement.cxx create mode 100644 packages/std/src/bbstdGetVectorElement.h diff --git a/packages/std/src/bbstdGetVectorElement.cxx b/packages/std/src/bbstdGetVectorElement.cxx new file mode 100644 index 0000000..d7a1896 --- /dev/null +++ b/packages/std/src/bbstdGetVectorElement.cxx @@ -0,0 +1,28 @@ +#include "bbstdGetVectorElement.h" +#include "bbstdPackage.h" + + +namespace bbstd +{ + //==================================================================== + BBTK_BLACK_BOX_TEMPLATE_IMPLEMENTATION(GetVectorElement, + bbtk::AtomicBlackBox); + //==================================================================== + +//==================================================================== +// Add the specialized boxes to the package + +BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,GetVectorElement,int8_t); +BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,GetVectorElement,uint8_t); +BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,GetVectorElement,int16_t); +BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,GetVectorElement,uint16_t); +BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,GetVectorElement,int32_t); +BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,GetVectorElement,uint32_t); +BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,GetVectorElement,long); +BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,GetVectorElement,float); +BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,GetVectorElement,double); +typedef std::string string; +BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,GetVectorElement,string); +//==================================================================== + +} // namespace bbstd 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__ + -- 2.45.0