]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkAreaFactory.h
*duck*
[lyx.git] / src / frontends / WorkAreaFactory.h
1 /**
2  * \file WorkAreaFactory.h
3  * Copyright 2002 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon <moz@compsoc.man.ac.uk>
7  */
8
9 #ifndef WORKAREAFACTORY_H
10 #define WORKAREAFACTORY_H
11  
12 class WorkArea;
13  
14 namespace WorkAreaFactory {
15         /**
16          * Make a work area. Used because we want to generate
17          * a toolkit-specific instance.
18          */
19         WorkArea * create(int x, int y, int w, int h);
20 }
21
22 #endif // WORKAREA_FACTORY_H