]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/WorkAreaFactory.C
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / gtk / WorkAreaFactory.C
1 /**
2  * \file gtk/WorkAreaFactory.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 _GLIBCPP_CONCEPT_CHECKS
15 #undef _GLIBCPP_CONCEPT_CHECKS
16 #endif
17
18 #include "GWorkArea.h"
19
20 #include "frontends/WorkAreaFactory.h"
21
22 #include <gtkmm.h>
23
24
25 namespace WorkAreaFactory {
26
27
28 WorkArea * create(LyXView & owner, int w, int h)
29 {
30         return new lyx::frontend::GWorkArea(owner, w, h);
31 }
32
33
34 }