mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
24 lines
377 B
C++
24 lines
377 B
C++
|
/**
|
||
|
* \file LyXScreenFactory.C
|
||
|
* Copyright 2002 the LyX Team
|
||
|
* Read the file COPYING
|
||
|
*
|
||
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include "frontends/LyXScreenFactory.h"
|
||
|
|
||
|
#include "QWorkArea.h"
|
||
|
#include "qscreen.h"
|
||
|
|
||
|
namespace LyXScreenFactory {
|
||
|
|
||
|
LyXScreen * create(WorkArea & owner)
|
||
|
{
|
||
|
return new QScreen(static_cast<QWorkArea &>(owner));
|
||
|
}
|
||
|
|
||
|
}
|