2002-06-19 03:38:44 +00:00
|
|
|
/**
|
2002-09-26 08:57:43 +00:00
|
|
|
* \file qt2/LyXScreenFactory.C
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-06-19 03:38:44 +00:00
|
|
|
*
|
2002-10-20 01:48:28 +00:00
|
|
|
* \author John Levon
|
2002-09-24 13:57:09 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2002-06-19 03:38:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
#include "frontends/LyXScreenFactory.h"
|
|
|
|
|
|
|
|
#include "QWorkArea.h"
|
|
|
|
#include "qscreen.h"
|
|
|
|
|
|
|
|
namespace LyXScreenFactory {
|
|
|
|
|
|
|
|
LyXScreen * create(WorkArea & owner)
|
|
|
|
{
|
|
|
|
return new QScreen(static_cast<QWorkArea &>(owner));
|
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
} // namespace LyXScreenFactory
|