]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkAreaFactory.h
If I ever see another licence blurb again, it'll be too soon...
[lyx.git] / src / frontends / WorkAreaFactory.h
1 // -*- C++ -*-
2 /**
3  * \file WorkAreaFactory.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef WORKAREAFACTORY_H
13 #define WORKAREAFACTORY_H
14
15 class WorkArea;
16
17 namespace WorkAreaFactory {
18         /**
19          * Make a work area. Used because we want to generate
20          * a toolkit-specific instance.
21          */
22         WorkArea * create(int x, int y, int w, int h);
23 }
24
25 #endif // WORKAREA_FACTORY_H