--- /dev/null
+<?xml version="1.0" encoding="iso-8859-1"?>
+
+<blackbox name="Multiply">
+
+ <author>claire.mouton@creatis.insa-lyon.fr </author>
+ <description>Multiplies its inputs </description>
+ <category>math </category>
+
+ <input name="In1" type="double" description="First number to multiply"/>
+ <input name="In2" type="double" description="Second number to multiply"/>
+ <output name="Out" type="double" description="Result"/>
+
+ <process><PRE>
+ bbSetOutputOut( bbGetInputIn1() * bbGetInputIn2() );
+ </PRE></process>
+
+ <defaultValues><PRE>
+ bbSetInputIn1(0);
+ bbSetInputIn2(0);
+ bbSetOutputOut(0);
+ </PRE></defaultValues>
+
+</blackbox>
+
+