mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
0e9148aa78
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2794 a592a061-630c-0410-9148-cb99ea01b6c8
26 lines
389 B
C++
26 lines
389 B
C++
// -*- C++ -*-
|
|
#ifndef MATH_FRACBASE_H
|
|
#define MATH_FRACBASE_H
|
|
|
|
#include "math_nestinset.h"
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
class MathFracbaseInset : public MathNestInset {
|
|
public:
|
|
///
|
|
MathFracbaseInset();
|
|
///
|
|
bool idxUp(int &, int &) const;
|
|
///
|
|
bool idxDown(int &, int &) const;
|
|
///
|
|
bool idxLeft(int &, int &) const;
|
|
///
|
|
bool idxRight(int &, int &) const;
|
|
};
|
|
|
|
#endif
|