/** * \file WorkAreaFactory.C * Copyright 2002 the LyX Team * Read the file COPYING * * \author John Levon */ #include #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); } }