2003-08-23 00:17:00 +00:00
|
|
|
|
// -*- C++ -*-
|
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
|
|
|
|
*
|
2003-09-07 01:45:40 +00:00
|
|
|
|
* \author Asger & J<EFBFBD>rgen
|
2002-09-05 14:10:50 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +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
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
|
class LyXKeySym;
|
|
|
|
|
|
|
|
|
|
namespace LyXKeySymFactory {
|
|
|
|
|
/**
|
2002-12-01 22:59:25 +00:00
|
|
|
|
* Make a LyXKeySym. Used because we want to
|
2002-06-18 15:44:30 +00:00
|
|
|
|
* generate a toolkit-specific instance.
|
|
|
|
|
*/
|
|
|
|
|
LyXKeySym * create();
|
|
|
|
|
}
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
|
#endif // LYXKEYSYM_FACTORY_H
|