X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_biginset.h;h=df6899e234ff7fb78bf20c30a96b88a6055a2ab3;hb=b447408de232872fef1537fca542abc23702d572;hp=554429e453f92b5222bb755b92f55b26ae038d27;hpb=1829cdef6a34ec623c25ec8967dc048e8f19eee9;p=lyx.git diff --git a/src/mathed/math_biginset.h b/src/mathed/math_biginset.h index 554429e453..df6899e234 100644 --- a/src/mathed/math_biginset.h +++ b/src/mathed/math_biginset.h @@ -1,37 +1,35 @@ // -*- C++ -*- - /** - * \file math_biginset.h - * - * This file is part of LyX, the document processor. - * Licence details can be found in the file COPYING. + * \file math_biginset.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * - * Full author contact details are available in file CREDITS. + * Full author contact details are available in file CREDITS. */ #ifndef MATH_BIGINSET_H #define MATH_BIGINSET_H - #include "math_diminset.h" -#include "LString.h" + +#include /// Inset for \bigl & Co. class MathBigInset : public MathDimInset { public: /// - MathBigInset(string const & name, string const & delim); + MathBigInset(std::string const & name, std::string const & delim); + /// + virtual std::auto_ptr clone() const; /// - MathInset * clone() const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// void write(WriteStream & os) const; /// - void metrics(MetricsInfo & st) const; - /// void normalize(NormalStream & os) const; private: @@ -41,9 +39,9 @@ private: double increase() const; /// \bigl or what? - string const name_; + std::string const name_; /// ( or [ or Vert... - string const delim_; + std::string const delim_; }; #endif