mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 10:40:48 +00:00
f1c24d1009
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4417 a592a061-630c-0410-9148-cb99ea01b6c8
23 lines
348 B
C
23 lines
348 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 "XWorkArea.h"
|
|
|
|
namespace WorkAreaFactory {
|
|
|
|
WorkArea * create(int x, int y, int w, int h)
|
|
{
|
|
return new XWorkArea(x, y, w, h);
|
|
}
|
|
|
|
}
|