]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_refiner/nRstatus.ml
The left parameters coming from the constructor types have been refined in a
[helm.git] / helm / software / components / ng_refiner / nRstatus.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 (* $Id: nCicRefiner.ml 9802 2009-05-25 15:39:26Z tassi $ *)
13
14 class type g_status =
15  object
16   inherit NCicCoercion.g_status
17   inherit NCicLibrary.g_status
18  end
19
20 class status =
21  object (self)
22   inherit NCicCoercion.status
23   inherit NCicLibrary.status
24   method set_rstatus : 'status. #g_status as 'status -> 'self
25    = fun o -> (self#set_coercion_status o)#set_library_status o
26  end
27
28 type sstatus = status
29
30 module Serializer =
31  struct
32   include NCicLibrary.Serializer(struct type status = sstatus end)
33
34   let require ~baseuri status = 
35    let rstatus = require ~baseuri (status : #status :> status) in
36    let status = status#set_coerc_db (rstatus#coerc_db) in
37    let status = status#set_uhint_db (rstatus#uhint_db) in
38    let status = status#set_timestamp (rstatus#timestamp) in
39     status 
40  end
41
42 class type g_dumpable_status =
43  object
44   inherit g_status
45   method dump: Serializer.obj list
46  end
47
48 class dumpable_status =
49  object(self)
50   inherit status
51   val dump = ([] : Serializer.obj list)
52   method dump = dump
53   method set_dump v = {< dump = v >}
54   method set_dumpable_status : 'status. #g_dumpable_status as 'status -> 'self
55    = fun o -> (self#set_dump o#dump)#set_rstatus o
56  end