lyx_mirror/src/frontends/gtk/LyXKeySymFactory.C

28 lines
410 B
C++
Raw Normal View History

/**
* \file gtk/LyXKeySymFactory.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Huang Ying
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#include "frontends/LyXKeySymFactory.h"
#include "GLyXKeySym.h"
namespace LyXKeySymFactory {
LyXKeySym * create()
{
return new GLyXKeySym();
}
}