]> git.lyx.org Git - lyx.git/blob - src/mathed/math_fracbase.h
introduce namespace lyx::support
[lyx.git] / src / mathed / math_fracbase.h
1 // -*- C++ -*-
2 #ifndef MATH_FRACBASE_H
3 #define MATH_FRACBASE_H
4
5 #include "math_nestinset.h"
6
7
8 class MathFracbaseInset : public MathNestInset {
9 public:
10         ///
11         MathFracbaseInset();
12         ///
13         bool idxUpDown(idx_type & idx, pos_type & pos, bool up, int targetx) const;
14         ///
15         bool idxLeft(idx_type & idx, pos_type & pos) const;
16         ///
17         bool idxRight(idx_type & idx, pos_type & pos) const;
18 };
19
20 #endif