]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/WorkAreaFactory.C
dont use pragma impementation and interface anymore
[lyx.git] / src / frontends / qt2 / WorkAreaFactory.C
1 /**
2  * \file qt2/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
14 #include "frontends/WorkAreaFactory.h"
15
16 #include "QWorkArea.h"
17
18 namespace WorkAreaFactory {
19
20 WorkArea * create(int x, int y, int w, int h)
21 {
22         return new QWorkArea(x, y, w, h);
23 }
24
25 } // namespace WorkAreaFactory