2006-03-05 17:24:44 +00:00
|
|
|
|
/**
|
2007-04-27 08:43:38 +00:00
|
|
|
|
* \file qt4/KeySymbolFactory.cpp
|
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>
|
|
|
|
|
|
2007-04-27 08:43:38 +00:00
|
|
|
|
#include "frontends/KeySymbol.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2007-04-27 08:43:38 +00:00
|
|
|
|
#include "QKeySymbol.h"
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2007-04-27 08:43:38 +00:00
|
|
|
|
KeySymbol * createKeySymbol()
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2007-04-27 08:43:38 +00:00
|
|
|
|
return new QKeySymbol;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
} // namespace lyx
|