2002-06-19 05:20:29 +00:00
|
|
|
/**
|
2002-09-26 08:57:43 +00:00
|
|
|
* \file qt2/LyXKeySymFactory.C
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-06-19 05:20:29 +00:00
|
|
|
*
|
|
|
|
* \author Asger & Juergen
|
2002-09-24 13:57:09 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2002-06-19 05:20:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-09-24 13:57:09 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2002-06-19 05:20:29 +00:00
|
|
|
#include "frontends/LyXKeySymFactory.h"
|
|
|
|
|
|
|
|
#include "QLyXKeySym.h"
|
|
|
|
|
|
|
|
namespace LyXKeySymFactory {
|
|
|
|
|
|
|
|
LyXKeySym * create()
|
|
|
|
{
|
|
|
|
return new QLyXKeySym();
|
|
|
|
}
|
2002-10-20 01:48:28 +00:00
|
|
|
|
|
|
|
} // namespace LyXKeySymFactory
|