]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdGetVectorElement.h
Acces to the i-th element of a vector
[bbtk.git] / packages / std / src / bbstdGetVectorElement.h
diff --git a/packages/std/src/bbstdGetVectorElement.h b/packages/std/src/bbstdGetVectorElement.h
new file mode 100644 (file)
index 0000000..da3f079
--- /dev/null
@@ -0,0 +1,60 @@
+#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__
+