]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/components/lexicon/cicNotation.mli
More parts of the lexicon status made functional.
[helm.git] / matita / components / lexicon / cicNotation.mli
index 085feda0dee3d435da4c49f8ec614755bad58498..aa500f37115c6287d6269a85763172a9d2c6ca4f 100644 (file)
 
 type notation_id
 
+class type g_status =
+ object ('self)
+  inherit Interpretations.g_status
+  inherit TermContentPres.g_status
+ end
+
+class status :
+ object ('self)
+  inherit Interpretations.status
+  inherit TermContentPres.status
+  method set_notation_status: #g_status -> 'self
+ end
+
 val compare_notation_id : notation_id -> notation_id -> int
 
 val process_notation:
- #Interpretations.status as 'status -> LexiconAst.command
-  -> 'status * notation_id list
+ #status as 'status -> LexiconAst.command -> 'status * notation_id list
 
 val remove_notation: notation_id -> unit