]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_refiner/nRstatus.mli
10a4a8a622a5203f7dce1be998b7c373a64f2571
[helm.git] / helm / software / components / ng_refiner / nRstatus.mli
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 status :
15  object ('self)
16   inherit NCicCoercion.status
17   inherit NCicLibrary.status
18   method set_rstatus: 
19    < coerc_db : NCicCoercion.db;
20      uhint_db : NCicUnifHint.db;
21      timestamp: NCicLibrary.timestamp; .. > -> 'self
22  end
23
24 module Serializer:
25  sig
26   include NCicLibrary.Serializer with type status = status 
27   val require: baseuri:NUri.uri -> (#status as 'status) -> 'status
28  end
29
30 class dumpable_status :
31  object ('self)
32   inherit status
33   method dump: Serializer.obj list
34   method set_dump: Serializer.obj list -> 'self
35   method set_dumpable_status:
36    < coerc_db : NCicCoercion.db;
37      uhint_db : NCicUnifHint.db;
38      timestamp: NCicLibrary.timestamp;
39      dump: Serializer.obj list; .. > -> 'self
40  end