2002-06-18 15:44:30 +00:00
|
|
|
/**
|
2002-09-26 08:57:43 +00:00
|
|
|
* \file xforms/LyXScreenFactory.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-12-01 22:59:25 +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-12-01 22:59:25 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
#include "frontends/LyXScreenFactory.h"
|
|
|
|
|
|
|
|
#include "XWorkArea.h"
|
|
|
|
#include "xscreen.h"
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
namespace LyXScreenFactory {
|
|
|
|
|
|
|
|
LyXScreen * create(WorkArea & owner)
|
|
|
|
{
|
|
|
|
return new XScreen(static_cast<XWorkArea &>(owner));
|
2002-12-01 22:59:25 +00:00
|
|
|
}
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
}
|