mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
a37064c0ac
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5263 a592a061-630c-0410-9148-cb99ea01b6c8
14 lines
222 B
C++
14 lines
222 B
C++
#ifndef MATHAUTOCORRECT_H
|
|
#define MATHAUTOCORRECT_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
class MathAtom;
|
|
|
|
// make "corrections" according to file lib/autocorrect
|
|
bool math_autocorrect(MathAtom & at, char c);
|
|
|
|
#endif
|