]> git.lyx.org Git - lyx.git/blob - src/frontends/lyx_gui.h
Trivial fix for compiler warning.
[lyx.git] / src / frontends / lyx_gui.h
1 /**
2  * \file lyx_gui.h
3  * Copyright 2002 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon <moz@compsoc.man.ac.uk>
7  */
8
9 #ifndef LYX_GUI_H
10 #define LYX_GUI_H
11  
12 #include <config.h>
13  
14 #include "LString.h"
15  
16 #include <vector>
17  
18 /// GUI interaction
19 namespace lyx_gui {
20  
21         /// parse command line and do basic initialisation
22         void parse_init(int & argc, char * argv[]);
23          
24         /**
25          * set up GUI parameters. At this point lyxrc may
26          * be used. 
27          */
28         void parse_lyxrc();
29
30         /**
31          * Start the main event loop, after executing the given
32          * batch commands, and loading the given documents
33          */
34         void start(string const & batch, std::vector<std::string> files);
35
36         /// initialise graphics
37         void init_graphics();
38 }
39
40 #endif // LYX_GUI_H