X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_matrixinset.h;h=50d7baccd3e5a458138908795bc52277ca3bb5aa;hb=7338f3b980d4dc5793ff80be814b7a74e1c72274;hp=47a0b714e41317b39b7d3620ddacf58eb089d057;hpb=ac7c86da7430923dc8c97b69a631fdef1f5178ec;p=lyx.git diff --git a/src/mathed/math_matrixinset.h b/src/mathed/math_matrixinset.h index 47a0b714e4..50d7baccd3 100644 --- a/src/mathed/math_matrixinset.h +++ b/src/mathed/math_matrixinset.h @@ -1,12 +1,19 @@ // -*- C++ -*- +/** + * \file math_matrixinset.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author André Pönitz + * + * Full author contact details are available in file CREDITS. + */ + #ifndef MATH_MATRIXINSET_H #define MATH_MATRIXINSET_H #include "math_gridinset.h" -#ifdef __GNUG__ -#pragma interface -#endif // "shortcut" for DelimInset("(",ArrayInset,")") @@ -17,9 +24,7 @@ public: /// MathMatrixInset(string const & str); /// - MathInset * clone() const; - /// - void metrics(MathMetricsInfo &) const {} + virtual std::auto_ptr clone() const; /// identifies MatrixInsets MathMatrixInset const * asMatrixInset() const { return this; } @@ -28,13 +33,13 @@ public: /// void normalize(NormalStream &) const; /// - void maplize(MapleStream &) const; + void maple(MapleStream &) const; /// - void maximize(MaximaStream &) const; + void maxima(MaximaStream &) const; /// void mathmlize(MathMLStream &) const; /// - void octavize(OctaveStream &) const; + void octave(OctaveStream &) const; }; #endif