2006-03-05 17:24:44 +00:00
|
|
|
|
/**
|
2006-04-24 13:25:50 +00:00
|
|
|
|
* \file qt4/LyXKeySymFactory.C
|
2006-03-05 17:24:44 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Asger & J<EFBFBD>rgen
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "frontends/LyXKeySymFactory.h"
|
|
|
|
|
|
|
|
|
|
#include "QLyXKeySym.h"
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
namespace LyXKeySymFactory {
|
|
|
|
|
|
|
|
|
|
LyXKeySym * create()
|
|
|
|
|
{
|
|
|
|
|
return new QLyXKeySym;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace LyXKeySymFactory
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|