X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_exintinset.h;h=b1e11d8814fd0c9fe85b5f8d2e2104f0ddc20be5;hb=edbef46cd7865dab72ab6b503d62e2492479d297;hp=f2fd46568f4084c5fa31d6edc0be6a595f3743ef;hpb=99d1627a471b92f403598d03dfc861ddc3c11be0;p=lyx.git diff --git a/src/mathed/math_exintinset.h b/src/mathed/math_exintinset.h index f2fd46568f..b1e11d8814 100644 --- a/src/mathed/math_exintinset.h +++ b/src/mathed/math_exintinset.h @@ -1,4 +1,14 @@ // -*- C++ -*- +/** + * \file math_exintinset.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_EXINTINSET_H #define MATH_EXINTINSET_H @@ -8,28 +18,31 @@ #include "math_nestinset.h" +#include + + // cell(0) is stuff before the 'd', cell(1) the stuff after class MathExIntInset : public MathNestInset { public: /// - explicit MathExIntInset(string const & name_); + explicit MathExIntInset(std::string const & name_); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// - void symbol(string const &); + void symbol(std::string const &); /// - void metrics(MathMetricsInfo & st) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void draw(MathPainterInfo &, int x, int y) const; + void draw(PainterInfo &, int x, int y) const; /// void normalize(NormalStream &) const; /// - void maximize(MaximaStream &) const; + void maxima(MaximaStream &) const; /// - void maplize(MapleStream &) const; + void maple(MapleStream &) const; /// - void mathematicize(MathematicaStream &) const; + void mathematica(MathematicaStream &) const; /// void mathmlize(MathMLStream &) const; /// @@ -39,7 +52,7 @@ private: bool hasScripts() const; /// - string symbol_; + std::string symbol_; }; #endif