]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkAreaFactory.h
A layout engine for XForms.
[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 class LyXView;
17
18 namespace WorkAreaFactory {
19         /**
20          * Make a work area. Used because we want to generate
21          * a toolkit-specific instance.
22          */
23         WorkArea * create(LyXView & owner, int w, int h);
24 }
25
26 #endif // WORKAREA_FACTORY_H