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();
|
|
|
|
///
|
2001-12-12 13:11:28 +00:00
|
|
|
bool idxUp(idx_type &) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
///
|
2001-12-12 13:11:28 +00:00
|
|
|
bool idxDown(idx_type &) 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
|