lyx_mirror/src/frontends/xforms/LyXScreenFactory.C

26 lines
472 B
C++
Raw Normal View History

/**
* \file LyXScreenFactory.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#include "frontends/LyXScreenFactory.h"
#include "XWorkArea.h"
#include "xscreen.h"
namespace LyXScreenFactory {
LyXScreen * create(WorkArea & owner)
{
return new XScreen(static_cast<XWorkArea &>(owner));
}
}