]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/WorkAreaFactory.C
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / WorkAreaFactory.C
1 /**
2  * \file xforms/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 John Levon
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "frontends/WorkAreaFactory.h"
14 #include "XWorkArea.h"
15
16
17 namespace WorkAreaFactory {
18
19 WorkArea * create(int x, int y, int w, int h)
20 {
21         return new XWorkArea(x, y, w, h);
22 }
23
24 }