]> Creatis software - bbtk.git/commitdiff
Feature #1742 Modified the output type from double to int.
authorClaire Mouton <Claire.Mouton@creatis.insa-lyon.fr>
Wed, 7 Nov 2012 13:45:32 +0000 (13:45 +0000)
committerClaire Mouton <Claire.Mouton@creatis.insa-lyon.fr>
Wed, 7 Nov 2012 13:45:32 +0000 (13:45 +0000)
packages/std/src/bbstdGetDoubleVectorSize.h

index c3653ff6c193cf0b8aee5d834c4d664fcfd4f5c1..24536fdafc07de765e2458a8742095c4dd764d55 100644 (file)
@@ -13,7 +13,7 @@ class bbstd_EXPORT GetDoubleVectorSize
 {
   BBTK_BLACK_BOX_INTERFACE(GetDoubleVectorSize,bbtk::AtomicBlackBox);
   BBTK_DECLARE_INPUT(In,std::vector<double>);
-  BBTK_DECLARE_OUTPUT(VectorSize, double);
+  BBTK_DECLARE_OUTPUT(VectorSize, int);
   BBTK_PROCESS(Process);
   void Process();
 };
@@ -24,7 +24,7 @@ BBTK_AUTHOR("Claire Mouton");
 BBTK_DESCRIPTION("Retrieves the size of a vector of double.");
 BBTK_CATEGORY("std");
 BBTK_INPUT(GetDoubleVectorSize,In,"Input vector.",std::vector<double>,"");
-BBTK_OUTPUT(GetDoubleVectorSize,VectorSize,"The vector size.",double,"");
+BBTK_OUTPUT(GetDoubleVectorSize,VectorSize,"The vector size.",int,"");
 BBTK_END_DESCRIBE_BLACK_BOX(GetDoubleVectorSize);
 }
 // EO namespace bbstd