]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/LyXScreenFactory.C
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / LyXScreenFactory.C
1 /**
2  * \file LyXScreenFactory.C
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 #include <config.h>
12  
13 #include "frontends/LyXScreenFactory.h"
14
15 #include "XWorkArea.h"
16 #include "xscreen.h"
17  
18 namespace LyXScreenFactory {
19
20 LyXScreen * create(WorkArea & owner)
21 {
22         return new XScreen(static_cast<XWorkArea &>(owner));
23
24  
25 }