Module Dbf_tableGUI (.ml)


module Dbf_tableGUI: sig .. end


type table_gui_input = {
   tgi_name : string;
   tgi_comment : string;
   tgi_logged : bool;
   tgi_pkey : Dbf_sql.SQL_db.column list;
   tgi_columns : Dbf_sql.SQL_db.column list option;
}
class table_gui : (table_gui_input -> 'a) -> table_gui_input -> object .. end