mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
1829cdef6a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6555 a592a061-630c-0410-9148-cb99ea01b6c8
38 lines
726 B
C++
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
|