]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkAreaFactory.h
This file is part of LyX, the document processor.
[lyx.git] / src / frontends / WorkAreaFactory.h
1 /**
2  * \file WorkAreaFactory.h
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 #ifndef WORKAREAFACTORY_H
12 #define WORKAREAFACTORY_H
13  
14 class WorkArea;
15  
16 namespace WorkAreaFactory {
17         /**
18          * Make a work area. Used because we want to generate
19          * a toolkit-specific instance.
20          */
21         WorkArea * create(int x, int y, int w, int h);
22 }
23
24 #endif // WORKAREA_FACTORY_H