OSDN Git Service

implement driver
[happyabc/happyabc.git] / driver / cmdOpt.mli
1 type output_type = Ho | Abc | Abcx | Swfx | Swf
2 type scm = { scm_cmd : string; includes : string; }
3 type abc = { abc_cmd : string; }
4 type abcx = { template : string; size : int * int; bg_color : string; }
5 type swfx = { swfx_cmd : string; }
6 type general = { verbose : bool; }
7 type t = {
8   inputs : string list;
9   output : string;
10   output_type : output_type;
11   general : general;
12   scm : scm;
13   abc : abc;
14   abcx : abcx;
15   swfx : swfx;
16 }
17 val parse : string array -> t