mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
23 lines
347 B
C++
23 lines
347 B
C++
|
/**
|
||
|
* \file WorkAreaFactory.C
|
||
|
* Copyright 2002 the LyX Team
|
||
|
* Read the file COPYING
|
||
|
*
|
||
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include "frontends/WorkAreaFactory.h"
|
||
|
|
||
|
#include "QWorkArea.h"
|
||
|
|
||
|
namespace WorkAreaFactory {
|
||
|
|
||
|
WorkArea * create(int x, int y, int w, int h)
|
||
|
{
|
||
|
return new QWorkArea(x, y, w, h);
|
||
|
}
|
||
|
|
||
|
}
|