mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 04:17:43 +00:00
f1c24d1009
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4417 a592a061-630c-0410-9148-cb99ea01b6c8
24 lines
381 B
C
24 lines
381 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 "XWorkArea.h"
|
|
#include "xscreen.h"
|
|
|
|
namespace LyXScreenFactory {
|
|
|
|
LyXScreen * create(WorkArea & owner)
|
|
{
|
|
return new XScreen(static_cast<XWorkArea &>(owner));
|
|
}
|
|
|
|
}
|