2002-06-18 15:44:30 +00:00
|
|
|
/**
|
|
|
|
* \file LyXKeySymFactory.h
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-06-18 15:44:30 +00:00
|
|
|
*
|
|
|
|
* \author Asger & Juergen
|
2002-09-05 14:10:50 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2002-06-18 15:44:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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
|