2002-06-18 15:44:30 +00:00
|
|
|
/**
|
|
|
|
* \file WorkAreaFactory.h
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-06-18 15:44:30 +00:00
|
|
|
*
|
2002-09-05 14:10:50 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2002-06-18 15:44:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WORKAREAFACTORY_H
|
|
|
|
#define WORKAREAFACTORY_H
|
|
|
|
|
|
|
|
class WorkArea;
|
|
|
|
|
|
|
|
namespace WorkAreaFactory {
|
|
|
|
/**
|
|
|
|
* Make a work area. Used because we want to generate
|
|
|
|
* a toolkit-specific instance.
|
|
|
|
*/
|
|
|
|
WorkArea * create(int x, int y, int w, int h);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // WORKAREA_FACTORY_H
|