mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
30 lines
493 B
C++
30 lines
493 B
C++
|
/**
|
||
|
* \file gtk/LyXScreenFactory.C
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author Huang Ying
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include <gtkmm.h>
|
||
|
#include "frontends/LyXScreenFactory.h"
|
||
|
|
||
|
#include "GWorkArea.h"
|
||
|
#include "GScreen.h"
|
||
|
|
||
|
|
||
|
namespace LyXScreenFactory {
|
||
|
|
||
|
|
||
|
LyXScreen * create(WorkArea & owner)
|
||
|
{
|
||
|
return new GScreen(static_cast<GWorkArea &>(owner));
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|