X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_macrotemplate.h;h=405eeb331172e24ade293c1d44c44dfd69455dc3;hb=92d522b7f1be6046adcac062c558bbf0bf021612;hp=a8f09a04ad75af19df95e803d703f623dad6361c;hpb=fe87869cb763c613c4dc36294efbd8edff175d54;p=lyx.git diff --git a/src/mathed/math_macrotemplate.h b/src/mathed/math_macrotemplate.h index a8f09a04ad..405eeb3311 100644 --- a/src/mathed/math_macrotemplate.h +++ b/src/mathed/math_macrotemplate.h @@ -5,14 +5,13 @@ #include "math_nestinset.h" #include "LString.h" -#ifdef __GNUG__ -#pragma interface -#endif class MathMacro; /** This class contains the macro definition - \author Alejandro Aguilar Sierra + * \author Alejandro Aguilar Sierra + * + * Full author contact details are available in file CREDITS */ //class MathMacroTemplate : public MathInset, boost::noncopyable @@ -21,9 +20,12 @@ public: /// MathMacroTemplate(); /// - MathMacroTemplate(string const & name, int nargs); + MathMacroTemplate(string const & name, int nargs, + MathArray const & = MathArray(), MathArray const & = MathArray()); + /// + explicit MathMacroTemplate(std::istream & is); /// - MathInset * clone() const; + InsetBase * clone() const; /// void write(WriteStream & os) const; /// Number of arguments @@ -31,13 +33,15 @@ public: /// void numargs(int); /// - string const & name() const; + string name() const; /// - void draw(MathPainterInfo &, int x, int y) const; + void draw(PainterInfo &, int x, int y) const; /// - void metrics(MathMetricsInfo & st) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// identifies macro templates MathMacroTemplate * asMacroTemplate() { return this; } + /// identifies macro templates + MathMacroTemplate const * asMacroTemplate() const { return this; } private: /// int numargs_;