lyx_mirror/src/frontends/qt2/WorkAreaFactory.C

23 lines
347 B
C++
Raw Normal View History

/**
* \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);
}
}