]> git.lyx.org Git - lyx.git/blob - src/mathed/math_fracbase.h
Andreas' patch to prevent crash on click on previewd inset
[lyx.git] / src / mathed / math_fracbase.h
1 // -*- C++ -*-
2 /**
3  * \file math_fracbase.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_FRACBASE_H
13 #define MATH_FRACBASE_H
14
15 #include "math_nestinset.h"
16
17
18 class MathFracbaseInset : public MathNestInset {
19 public:
20         ///
21         MathFracbaseInset();
22         ///
23         bool idxUpDown(LCursor &, bool up) const;
24         ///
25         bool idxLeft(LCursor &) const;
26         ///
27         bool idxRight(LCursor &) const;
28 };
29
30 #endif