]> git.lyx.org Git - features.git/blob - src/frontends/gtk/WorkAreaFactory.C
d40ce1b9aacb245d1650bd358686d2f2f696f39e
[features.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 #include "GWorkArea.h"
14
15 #include "frontends/WorkAreaFactory.h"
16
17 #include <gtkmm.h>
18
19
20 namespace WorkAreaFactory {
21
22
23 WorkArea * create(LyXView & owner, int w, int h)
24 {
25         return new lyx::frontend::GWorkArea(owner, w, h);
26 }
27
28
29 }