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
|
|
|
*
|
2003-08-23 00:17:00 +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"
|
|
|
|
#include "XWorkArea.h"
|
2002-10-21 17:38:09 +00:00
|
|
|
|
2003-09-05 13:15:43 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
namespace WorkAreaFactory {
|
2002-10-21 17:38:09 +00:00
|
|
|
|
2004-04-28 17:22:05 +00:00
|
|
|
WorkArea * create(LyXView & owner, int w, int h)
|
2002-06-18 15:44:30 +00:00
|
|
|
{
|
2004-04-28 17:22:05 +00:00
|
|
|
return new XWorkArea(owner, w, h);
|
2002-06-18 15:44:30 +00:00
|
|
|
}
|
2002-10-21 17:38:09 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
}
|