mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
23 lines
380 B
C
23 lines
380 B
C
|
/**
|
||
|
* \file LyXKeySymFactory.h
|
||
|
* Copyright 2002 the LyX Team
|
||
|
* Read the file COPYING
|
||
|
*
|
||
|
* \author Asger & Juergen
|
||
|
*/
|
||
|
|
||
|
#ifndef LYXKEYSYMFACTORY_H
|
||
|
#define LYXKEYSYMFACTORY_H
|
||
|
|
||
|
class LyXKeySym;
|
||
|
|
||
|
namespace LyXKeySymFactory {
|
||
|
/**
|
||
|
* Make a LyXKeySym. Used because we want to
|
||
|
* generate a toolkit-specific instance.
|
||
|
*/
|
||
|
LyXKeySym * create();
|
||
|
}
|
||
|
|
||
|
#endif // LYXKEYSYM_FACTORY_H
|