]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/WorkAreaFactory.C
get rid of broken_header.h and some unneeded tests
[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(LyXView & owner, int w, int h)
20 {
21         return new lyx::frontend::XWorkArea(owner, w, h);
22 }
23
24 }