lyx_mirror/src/mathed/math_matrixinset.h
André Pönitz 1829cdef6a promote MathMetricsInfo to MetricsInfo, change mathed accordingly
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6555 a592a061-630c-0410-9148-cb99ea01b6c8
2003-03-21 14:20:48 +00:00

38 lines
726 B
C++

// -*- 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(MetricsInfo &) const {}
/// identifies MatrixInsets
MathMatrixInset const * asMatrixInset() const { return this; }
///
void write(WriteStream & os) const;
///
void normalize(NormalStream &) const;
///
void maple(MapleStream &) const;
///
void maxima(MaximaStream &) const;
///
void mathmlize(MathMLStream &) const;
///
void octave(OctaveStream &) const;
};
#endif