]> Creatis software - bbtk.git/commitdiff
Acces to the i-th element of a vector
authorjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Wed, 18 Jun 2008 17:12:31 +0000 (17:12 +0000)
committerjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Wed, 18 Jun 2008 17:12:31 +0000 (17:12 +0000)
packages/std/src/bbstdGetVectorElement.cxx [new file with mode: 0644]
packages/std/src/bbstdGetVectorElement.h [new file with mode: 0644]

diff --git a/packages/std/src/bbstdGetVectorElement.cxx b/packages/std/src/bbstdGetVectorElement.cxx
new file mode 100644 (file)
index 0000000..d7a1896
--- /dev/null
@@ -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 (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__
+