diff --git a/scripts/createBindingsFormatFromHPP.pl b/scripts/createBindingsFormatFromHPP.pl
index a583f59976d9ffd2b1defb40025b052346a203d1..814042068783d01cd65292fbffee98678377e8ec 100755
--- a/scripts/createBindingsFormatFromHPP.pl
+++ b/scripts/createBindingsFormatFromHPP.pl
@@ -19,8 +19,14 @@ my $filename = $ARGV[0];
 open(IN,"< $filename") || die("Couldn't open input file: $filename");
 
 while (<IN>) {
-  if ($_=~/^\s*class\s+[A-Z0-9_]+_EXPORT\s+([^\s]+)/) {
+  if ($_=~/^\s*class\s+[A-Z0-9_]+_EXPORT\s+([^\s]+)\s*[:]\s*public\s([^\s]+)/) {
     $classname = $1;
+    $baseclass = $2;
+    last;
+  }
+  elsif ($_=~/^\s*class\s+[A-Z0-9_]+_EXPORT\s+([^\s]+)/) {
+    $classname = $1;
+    $baseclass = "";
     last;
   }
 }
@@ -32,9 +38,17 @@ print OUT <<"END1";
 <font color="#000000">$filename:</font></h3>
 
 <div id="$classname"><font face="Courier New,Courier"><font size=-1>class
-$classname</font></font>
-<table>
+$classname
 END1
+if ($baseclass ne "") { 
+print OUT <<"END2";
+: public $baseclass
+END2
+}
+print OUT <<"END3";
+</font></font>
+<table>
+END3
 
 while (<IN>) {
   if ($_=~/^\s*public\s*:/) {
@@ -83,6 +97,25 @@ while (<IN>) {
 
 <td><font face="Courier New,Courier"><font size=-1>$b</font></font></td>
 
+<td><font face="Courier New,Courier"><font size=-1>$c</font></font></td>
+</tr>
+END
+  } elsif ($_=~/^\s*(static)\s+([^\s\(][^\(]*[^\s\(])\s+([^\s\(]+\(.*)/) {
+    $a=$1;
+    $b=$2;
+    $c=$3;
+    while ($c!~/\)/) {
+      $c.=<IN>;
+    }
+    print OUT <<"END";
+
+<tr ALIGN=LEFT VALIGN=TOP>
+<td></td>
+
+<td><font face="Courier New,Courier"><font size=-1>$a</font></font></td>
+
+<td><font face="Courier New,Courier"><font size=-1>$b</font></font></td>
+
 <td><font face="Courier New,Courier"><font size=-1>$c</font></font></td>
 </tr>
 END
@@ -117,10 +150,10 @@ END3
       if ($_=~/}\s*;/) {
         print OUT <<"END4";
 <tr ALIGN=LEFT VALIGN=TOP>
-<td><font face="Courier New,Courier"><font size=-1>};</font></font></td>
-
 <td></td>
 
+<td><font face="Courier New,Courier"><font size=-1>};</font></font></td>
+
 <td></td>
 
 <td></td>
@@ -148,6 +181,7 @@ print OUT <<"END6";
 <td></td>
 </tr>
 </table>
+</div>
 END6
 
 close(OUT);