]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/WorkAreaFactory.C
The initial merge of the Qt frontend, and the necessary compile fixes.
[lyx.git] / src / frontends / qt2 / WorkAreaFactory.C
1 /**
2  * \file WorkAreaFactory.C
3  * Copyright 2002 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon <moz@compsoc.man.ac.uk>
7  */
8
9 #include <config.h>
10  
11 #include "frontends/WorkAreaFactory.h"
12  
13 #include "QWorkArea.h"
14  
15 namespace WorkAreaFactory {
16  
17 WorkArea * create(int x, int y, int w, int h)
18 {
19         return new QWorkArea(x, y, w, h);
20 }
21
22 }