]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/LyXScreenFactory.C
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / LyXScreenFactory.C
1 /**
2  * \file LyXScreenFactory.C
3  * Read the file COPYING
4  *
5  * \author John Levon 
6  *
7  * Full author contact details are available in file CREDITS
8  */
9
10 #include <config.h>
11  
12 #include "frontends/LyXScreenFactory.h"
13
14 #include "XWorkArea.h"
15 #include "xscreen.h"
16  
17 namespace LyXScreenFactory {
18
19 LyXScreen * create(WorkArea & owner)
20 {
21         return new XScreen(static_cast<XWorkArea &>(owner));
22
23  
24 }