// 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_INPUT(GetVectorElement, In,"(default NULL) Input",Tvector);
BBTK_TEMPLATE_INPUT(GetVectorElement, I, "iElement (default 0)",int);
- BBTK_TEMPLATE_INPUT(GetVectorElement, ErrorValue, "ErrorValue",T);
+ BBTK_TEMPLATE_INPUT(GetVectorElement, ErrorValue, "(default NULL) ErrorValue",T);
BBTK_TEMPLATE_OUTPUT(GetVectorElement,Out,"Output",T);
BBTK_END_DESCRIBE_TEMPLATE_BLACK_BOX(GetVectorElement);
//=================================================================