X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBoldSymbol.h;h=229f28c9855825e12aa786b78d3fe56b0efaceba;hb=fc6ce7cd08562fd7bab4427880b46390bb7d2f07;hp=16d0ef60cc4ef0bcb1b82baf19447022cd1e0c1c;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathBoldSymbol.h b/src/mathed/InsetMathBoldSymbol.h index 16d0ef60cc..229f28c985 100644 --- a/src/mathed/InsetMathBoldSymbol.h +++ b/src/mathed/InsetMathBoldSymbol.h @@ -15,13 +15,16 @@ #include "InsetMathNest.h" +namespace lyx { + + /// Inset for AMSTeX's \boldsymbol class InsetMathBoldSymbol : public InsetMathNest { public: /// InsetMathBoldSymbol(); /// - void metrics(MetricsInfo & mi, Dimension & dim) const; + bool metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -33,9 +36,12 @@ public: /// void write(WriteStream & os) const; /// - void infoize(std::ostream & os) const; + void infoize(odocstream & os) const; private: - virtual std::auto_ptr doClone() const; + virtual std::auto_ptr doClone() const; }; + +} // namespace lyx + #endif