2002-06-18 15:44:30 +00:00
|
|
|
/**
|
2002-09-26 08:57:43 +00:00
|
|
|
* \file xforms/WorkAreaFactory.C
|
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-10-21 17:38:09 +00:00
|
|
|
* \author John Levon
|
2002-09-05 14:10:50 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2002-06-18 15:44:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2002-10-21 17:38:09 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
#include "frontends/WorkAreaFactory.h"
|
2002-10-21 17:38:09 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
#include "XWorkArea.h"
|
2002-10-21 17:38:09 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
namespace WorkAreaFactory {
|
2002-10-21 17:38:09 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
WorkArea * create(int x, int y, int w, int h)
|
|
|
|
{
|
|
|
|
return new XWorkArea(x, y, w, h);
|
|
|
|
}
|
2002-10-21 17:38:09 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
}
|