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