1 /*
2 
3 PhyML:  a program that  computes maximum likelihood phylogenies from
4 DNA or AA homologous sequences.
5 
6 Copyright (C) Stephane Guindon. Oct 2003 onward.
7 
8 All parts of the source except where indicated are distributed under
9 the GNU public licence. See http://www.opensource.org for details.
10 
11 */
12 
13 #include <config.h>
14 
15 #ifndef INTERFACE_H
16 #define INTERFACE_H
17 
18 #include "utilities.h"
19 #include "help.h"
20 #include "models.h"
21 #include "free.h"
22 #include "help.h"
23 
24 
25 void Launch_Interface(option *input);
26 void Clear();
27 void Launch_Interface_Input(option *input);
28 void Launch_Interface_Data_Type(option *input);
29 void Launch_Interface_Model(option *input);
30 void Launch_Interface_Topo_Search(option *input);
31 void Launch_Interface_Branch_Support(option *input);
32 void Launch_Interface_Multigene(option *input);
33 
34 #endif
35