mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
23 lines
296 B
C++
23 lines
296 B
C++
|
/**
|
||
|
* \file LyXKeySymFactory.C
|
||
|
* Copyright 2002 the LyX Team
|
||
|
* Read the file COPYING
|
||
|
*
|
||
|
* \author Asger & Juergen
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include "frontends/LyXKeySymFactory.h"
|
||
|
|
||
|
#include "QLyXKeySym.h"
|
||
|
|
||
|
namespace LyXKeySymFactory {
|
||
|
|
||
|
LyXKeySym * create()
|
||
|
{
|
||
|
return new QLyXKeySym();
|
||
|
}
|
||
|
|
||
|
}
|