]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/hbugs/client/hbugs_client.mli
added "describe_hint_callback" invoked when a hint is selected
[helm.git] / helm / hbugs / client / hbugs_client.mli
index cf7ebc2a991a0aaf112f7e6e668cc2922d07832a..0c2e93d800b81590ab5eb11fcd9e5455f5a28624 100644 (file)
@@ -3,8 +3,16 @@ open Hbugs_types
 
 exception Invalid_URL of string
 
+  (*
+    @param use_hint_callback is called when the user double click on a hint
+    (default: do nothing)
+    @param describe_hint_callback is called when the user click on a hint
+    (default: do nothing)
+  *)
 class hbugsClient :
   ?use_hint_callback: (hint -> unit) ->
+  ?describe_hint_callback: (hint -> unit) ->
+  ?destroy_callback: (unit -> unit) ->
   unit ->
     object