mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
32 lines
508 B
C
32 lines
508 B
C
|
// -*- C++ -*-
|
||
|
#ifndef MATH_XYMATRIX_H
|
||
|
#define MATH_XYMATRIX_H
|
||
|
|
||
|
#include "math_gridinset.h"
|
||
|
|
||
|
#ifdef __GNUG__
|
||
|
#pragma interface
|
||
|
#endif
|
||
|
|
||
|
|
||
|
class MathXYMatrixInset : public MathGridInset {
|
||
|
public:
|
||
|
///
|
||
|
MathXYMatrixInset();
|
||
|
///
|
||
|
MathInset * clone() const;
|
||
|
///
|
||
|
void metrics(MathMetricsInfo const & st) const;
|
||
|
///
|
||
|
MathXYMatrixInset * asXYMatrixInset() { return this; }
|
||
|
|
||
|
///
|
||
|
void write(WriteStream & os) const;
|
||
|
///
|
||
|
void normalize(NormalStream &) const;
|
||
|
///
|
||
|
void maplize(MapleStream &) const;
|
||
|
};
|
||
|
|
||
|
#endif
|