]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdAdd.xml
*** empty log message ***
[bbtk.git] / packages / std / src / bbstdAdd.xml
index e9fe11f64909053536d61a83dbaaddbb454bfe54..b6df26b4b88e23c8be3bd8e039d8fb2abfec2b55 100644 (file)
@@ -6,14 +6,9 @@
   <description>Adds its inputs</description>
   <category>math</category>
 
-  <parentblackbox>bbtk::AtomicBlackBox</parentblackbox>
-  <package>std</package>
-
-  <namespace>bbstd</namespace>
-
-  <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() );