lyx_mirror/src/mathed/math_fracbase.h

21 lines
388 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MATH_FRACBASE_H
#define MATH_FRACBASE_H
#include "math_nestinset.h"
class MathFracbaseInset : public MathNestInset {
public:
///
MathFracbaseInset();
///
bool idxUpDown(idx_type & idx, pos_type & pos, bool up, int targetx) const;
///
bool idxLeft(idx_type & idx, pos_type & pos) const;
///
bool idxRight(idx_type & idx, pos_type & pos) const;
};
#endif