2001-08-08 17:26:30 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
#ifndef MATH_FRACBASE_H
|
|
|
|
#define MATH_FRACBASE_H
|
|
|
|
|
|
|
|
#include "math_nestinset.h"
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class MathFracbaseInset : public MathNestInset {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
MathFracbaseInset();
|
2002-03-21 17:42:56 +00:00
|
|
|
///
|
2002-03-21 09:48:46 +00:00
|
|
|
bool idxUpDown(idx_type &, bool up) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
///
|
2001-11-15 09:51:57 +00:00
|
|
|
bool idxLeft(idx_type &, pos_type &) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
///
|
2001-11-15 09:51:57 +00:00
|
|
|
bool idxRight(idx_type &, pos_type &) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|