]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/LyXScreenFactory.C
some tabular fixes for the problems reported by Helge
[lyx.git] / src / frontends / gtk / LyXScreenFactory.C
1 /**
2  * \file gtk/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 Huang Ying
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 // Too hard to make concept checks work with this file
14 #ifdef _GLIBCXX_CONCEPT_CHECKS
15 #undef _GLIBCXX_CONCEPT_CHECKS
16 #endif
17 #ifdef _GLIBCPP_CONCEPT_CHECKS
18 #undef _GLIBCPP_CONCEPT_CHECKS
19 #endif
20
21 #include "GWorkArea.h"
22 #include "GScreen.h"
23
24 #include "frontends/LyXScreenFactory.h"
25
26 namespace LyXScreenFactory {
27
28
29 LyXScreen * create(WorkArea & owner)
30 {
31         using lyx::frontend::GScreen;
32         using lyx::frontend::GWorkArea;
33
34         return new GScreen(static_cast<GWorkArea &>(owner));
35 }
36
37
38 }