mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
24 lines
438 B
C
24 lines
438 B
C
|
/**
|
||
|
* \file LyXScreenFactory.h
|
||
|
* Copyright 2002 the LyX Team
|
||
|
* Read the file COPYING
|
||
|
*
|
||
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
||
|
*/
|
||
|
|
||
|
#ifndef LYXSCREENFACTORY_H
|
||
|
#define LYXSCREENFACTORY_H
|
||
|
|
||
|
class WorkArea;
|
||
|
class LyXScreen;
|
||
|
|
||
|
namespace LyXScreenFactory {
|
||
|
/**
|
||
|
* Make a screen renderer. Used because we want to
|
||
|
* generate a toolkit-specific instance.
|
||
|
*/
|
||
|
LyXScreen * create(WorkArea & owner);
|
||
|
}
|
||
|
|
||
|
#endif // LYXSCREEN_FACTORY_H
|