X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_exfuncinset.h;h=222cb482cc8e0ca9efdf30e0f7ef8e3fb297f1f6;hb=3e93baac3cd18e27db3eb2a1fcaf90b25e0918a6;hp=232225fbac7ddf4f00b821e530109fdfc3e0dc4a;hpb=ac7c86da7430923dc8c97b69a631fdef1f5178ec;p=lyx.git diff --git a/src/mathed/math_exfuncinset.h b/src/mathed/math_exfuncinset.h index 232225fbac..222cb482cc 100644 --- a/src/mathed/math_exfuncinset.h +++ b/src/mathed/math_exfuncinset.h @@ -1,44 +1,54 @@ // -*- C++ -*- +/** + * \file math_exfuncinset.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_EXFUNCINSET_H #define MATH_EXFUNCINSET_H -#ifdef __GNUG__ -#pragma interface -#endif #include "math_nestinset.h" +#include + + // f(x) in one block (as opposed to 'f','(','x',')' or 'f','x') // for interfacing external programs class MathExFuncInset : public MathNestInset { public: /// - explicit MathExFuncInset(string const & name); + explicit MathExFuncInset(std::string const & name); /// - MathExFuncInset(string const & name, MathArray const & ar); + MathExFuncInset(std::string const & name, MathArray const & ar); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// - void metrics(MathMetricsInfo & mi) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void draw(MathPainterInfo & pi, int x, int y) const; + void draw(PainterInfo & pi, int x, int y) const; /// - string name() const; + std::string name() const; /// - void maplize(MapleStream &) const; + void maple(MapleStream &) const; /// - void maximize(MaximaStream &) const; + void maxima(MaximaStream &) const; /// - void mathematicize(MathematicaStream &) const; + void mathematica(MathematicaStream &) const; /// void mathmlize(MathMLStream &) const; /// - void octavize(OctaveStream &) const; + void octave(OctaveStream &) const; private: /// - string const name_; + std::string const name_; }; #endif