Initial comit - Clone

This commit is contained in:
2024-03-05 22:01:20 +01:00
commit 385cf8e5aa
727 changed files with 164567 additions and 0 deletions

15
bin/gwb2ged/gwb2ged.ml Normal file
View File

@@ -0,0 +1,15 @@
let with_indexes = ref false
let speclist opts =
("-indexes", Arg.Set with_indexes, " export indexes in gedcom")
:: Gwexport.speclist opts
|> Arg.align
let main () =
let opts = ref Gwexport.default_opts in
Arg.parse (speclist opts) (Gwexport.anonfun opts) Gwexport.errmsg;
let opts = !opts in
let select = Gwexport.select opts [] in
Gwb2gedLib.gwb2ged !with_indexes opts select
let _ = main ()