]> git.lyx.org Git - lyx.git/blob - src/frontends/LyXScreenFactory.h
Lars says _(_(b)) is a bug ... fix
[lyx.git] / src / frontends / LyXScreenFactory.h
1 /**
2  * \file LyXScreenFactory.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon 
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #ifndef LYXSCREENFACTORY_H
12 #define LYXSCREENFACTORY_H
13  
14 class WorkArea;
15 class LyXScreen;
16
17 namespace LyXScreenFactory {
18         /**
19          * Make a screen renderer. Used because we want to 
20          * generate a toolkit-specific instance.
21          */
22         LyXScreen * create(WorkArea & owner);
23 }
24
25 #endif // LYXSCREEN_FACTORY_H