]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkAreaFactory.h
Really dull and boring header shit
[lyx.git] / src / frontends / WorkAreaFactory.h
1 /**
2  * \file WorkAreaFactory.h
3  * Read the file COPYING
4  *
5  * \author John Levon 
6  *
7  * Full author contact details are available in file CREDITS
8  */
9
10 #ifndef WORKAREAFACTORY_H
11 #define WORKAREAFACTORY_H
12  
13 class WorkArea;
14  
15 namespace WorkAreaFactory {
16         /**
17          * Make a work area. Used because we want to generate
18          * a toolkit-specific instance.
19          */
20         WorkArea * create(int x, int y, int w, int h);
21 }
22
23 #endif // WORKAREA_FACTORY_H