]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/LyXKeySymFactory.C
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / gtk / LyXKeySymFactory.C
1 /**
2  * \file gtk/LyXKeySymFactory.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Huang Ying
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "GLyXKeySym.h"
14
15 #include "frontends/LyXKeySymFactory.h"
16
17
18 namespace LyXKeySymFactory {
19
20 LyXKeySym * create()
21 {
22         return new GLyXKeySym;
23 }
24
25 }