2003-08-19 13:00:56 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file MathAutoCorrect.h
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2002-05-24 08:29:16 +00:00
|
|
|
|
#ifndef MATHAUTOCORRECT_H
|
|
|
|
|
#define MATHAUTOCORRECT_H
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
2002-09-11 09:14:57 +00:00
|
|
|
|
|
2002-05-24 08:29:16 +00:00
|
|
|
|
class MathAtom;
|
|
|
|
|
|
|
|
|
|
// make "corrections" according to file lib/autocorrect
|
|
|
|
|
bool math_autocorrect(MathAtom & at, char c);
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2002-05-24 08:29:16 +00:00
|
|
|
|
#endif
|