]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/WorkAreaFactory.C
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / WorkAreaFactory.C
1 /**
2  * \file WorkAreaFactory.C
3  * Read the file COPYING
4  *
5  * \author John Levon 
6  *
7  * Full author contact details are available in file CREDITS
8  */
9
10 #include <config.h>
11  
12 #include "frontends/WorkAreaFactory.h"
13  
14 #include "XWorkArea.h"
15  
16 namespace WorkAreaFactory {
17  
18 WorkArea * create(int x, int y, int w, int h)
19 {
20         return new XWorkArea(x, y, w, h);
21 }
22  
23 }