]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathPar.h
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / mathed / InsetMathPar.h
index 4fc791d7e746c7da02fb99d33c469919793aef65..500428c79613fff0a3bee107ccc34ccd20a7a200 100644 (file)
 
 #include "InsetMathHull.h"
 
+
+namespace lyx {
+
 class InsetMathPar : public InsetMathHull {
 public:
        ///
        InsetMathPar() {}
        ///
-       InsetMathPar(MathArray const & ar);
+       InsetMathPar(MathData const & ar);
        ///
        mode_type currentMode() const { return TEXT_MODE; }
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       bool metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo &, int x, int y) const;
        ///
-       void infoize(std::ostream & os) const;
+       void infoize(odocstream & os) const;
        ///
        void write(WriteStream & os) const;
 private:
        ///
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
 };
 
+
+
+} // namespace lyx
 #endif