]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/LyXScreenFactory.C
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / LyXScreenFactory.C
1 /**
2  * \file xforms/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 "xscreen.h"
16 #include "XWorkArea.h"
17
18
19 namespace LyXScreenFactory {
20
21 LyXScreen * create(WorkArea & owner)
22 {
23         using lyx::frontend::XScreen;
24         using lyx::frontend::XWorkArea;
25
26         return new XScreen(static_cast<XWorkArea &>(owner));
27 }
28
29 }