lyx_mirror/src/mathed/math_matrixinset.h

38 lines
736 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MATH_MATRIXINSET_H
#define MATH_MATRIXINSET_H
#include "math_gridinset.h"
// "shortcut" for DelimInset("(",ArrayInset,")")
class MathMatrixInset : public MathGridInset {
public:
///
MathMatrixInset(MathGridInset const &);
///
MathMatrixInset(string const & str);
///
MathInset * clone() const;
///
void metrics(MathMetricsInfo &) const {}
/// identifies MatrixInsets
MathMatrixInset const * asMatrixInset() const { return this; }
///
void write(WriteStream & os) const;
///
void normalize(NormalStream &) const;
///
void maplize(MapleStream &) const;
///
void maximize(MaximaStream &) const;
///
void mathmlize(MathMLStream &) const;
///
void octavize(OctaveStream &) const;
};
#endif