]> matita.cs.unibo.it Git - helm.git/blobdiff - matitaB/components/ng_cic_content/interpretations.ml
Multi-user matita: changed the status object to include a ``user'' method
[helm.git] / matitaB / components / ng_cic_content / interpretations.ml
index 75f46943052cc16868f64d102fd5255b279042b0..ed2b58a79235389ae0f335975aad982a454f9854 100644 (file)
@@ -67,9 +67,9 @@ class type g_status =
     method interp_db: db
   end
  
-class virtual status =
+class virtual status uid =
  object(self)
-   inherit NCicCoercion.status
+   inherit NCicCoercion.status uid
    val mutable interp_db = None (* mutable only to initialize it :-( *)
    method interp_db = match interp_db with None -> assert false | Some x -> x
    method set_interp_db v = {< interp_db = Some v >}