--- /dev/null
+#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
--- /dev/null
+#ifndef __bbstdGetVectorElement_INCLUDED_h__
+#define __bbstdGetVectorElement_INCLUDED_h__
+
+#include "bbtkAtomicBlackBox.h"
+
+namespace bbstd
+{
+ //=================================================================
+ // BlackBox declaration
+ template <class T>
+ class GetVectorElement : public bbtk::AtomicBlackBox
+ {
+ BBTK_TEMPLATE_BLACK_BOX_INTERFACE(GetVectorElement,bbtk::AtomicBlackBox,T);
+ BBTK_DECLARE_INPUT(In,std::vector<T>);
+ 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<std::vector<T> >()+"Element");
+ BBTK_AUTHOR("jpr@creatis.insa-lyon.fr");
+ // BBTK_DEFAULT_ADAPTOR();
+ BBTK_DESCRIPTION("Gets the i-th element from the input vector ("+bbtk::TypeName<std::vector<T> >());
+ typedef std::vector<T> Tvector;
+ BBTK_TEMPLATE_INPUT(GetVectorElement, In,"Input",Tvector);
+ BBTK_TEMPLATE_OUTPUT(GetVectorElement, Out,"Output",T);
+ BBTK_END_DESCRIBE_TEMPLATE_BLACK_BOX(GetVectorElement);
+ //=================================================================
+
+ //=================================================================
+ template <class T>
+ void GetVectorElement<T>::DoIt()
+ {
+ // std::string out;
+ // std::ostringstream oss;
+ int i = bbGetInputI();
+ //oss << bbGetInputIn()[i];
+ //bbSetOutputOut(out.str());
+ bbSetOutputOut(bbGetInputIn()[i]);
+ }
+ //=================================================================
+
+ //=================================================================
+ template <class T>
+ void GetVectorElement<T>::bbUserConstructor()
+ {
+
+ }
+ //=================================================================
+
+} // namespace bbstd
+
+#endif //__bbstdGetVectorElement_INCLUDED_h__
+