]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/LyXScreenFactory.C
6bcb0183d98c0a2b97b6d19378d134b45c9f459d
[lyx.git] / src / frontends / qt4 / LyXScreenFactory.C
1 /**
2  * \file qt2/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 "QWorkArea.h"
16 #include "qscreen.h"
17
18 namespace LyXScreenFactory {
19
20 LyXScreen * create(WorkArea & owner)
21 {
22         return new QScreen(static_cast<QWorkArea &>(owner));
23 }
24
25 } // namespace LyXScreenFactory