]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdAdd.xml
*** empty log message ***
[bbtk.git] / packages / std / src / bbstdAdd.xml
index 0d388701edb1418dce76ae1bf65a92cd8f874090..b6df26b4b88e23c8be3bd8e039d8fb2abfec2b55 100644 (file)
@@ -6,9 +6,9 @@
   <description>Adds its inputs</description>
   <category>math</category>
 
-  <input name="In1" type="double">First number to add</input>
-  <input name="In2" type="double">Second number to add</input>
-  <output name="Out" type="double">Result</output>
+  <input name="In1" type="double" description="First number to add"/>
+  <input name="In2" type="double" description="Second number to add"/>
+  <output name="Out" type="double" description="Result"/>
 
   <process><PRE>
     bbSetOutputOut( bbGetInputIn1() + bbGetInputIn2() );