lyx_mirror/src/mathed/math_diminset.h

27 lines
352 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MATH_DIMINSET_H
#define MATH_DIMINSET_H
#include "math_inset.h"
/// thing that need the dimension cache
class MathDimInset : public MathInset {
public:
MathDimInset();
///
int ascent() const;
///
int descent() const;
///
int width() const;
protected:
///
int width_;
///
int ascent_;
///
int descent_;
};
#endif