]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnknown.h
fix reading UTF8 encoded symbol file
[lyx.git] / src / mathed / InsetMathUnknown.h
index 86573b42d1ecabc05ca5eca4c63fb74f3d58580a..7872e73b36db211b5b7878415b9d23c3e6ac93e9 100644 (file)
 #include "InsetMathDim.h"
 
 
+namespace lyx {
+
+
 /// LaTeX names for objects that we really don't know
 class InsetMathUnknown : public InsetMathDim {
 public:
        ///
-       explicit InsetMathUnknown(std::string const & name,
+       explicit InsetMathUnknown(docstring const & name,
                bool final = true, bool black = false);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void setName(std::string const & name);
+       void setName(docstring const & name);
        ///
-       std::string name() const;
+       docstring name() const;
        /// identifies UnknownInsets
        InsetMathUnknown const * asUnknownInset() const { return this; }
        /// identifies UnknownInsets
@@ -41,7 +44,7 @@ public:
        ///
        void mathematica(MathematicaStream &) const;
        ///
-       void mathmlize(MathMLStream &) const;
+       void mathmlize(MathStream &) const;
        ///
        void octave(OctaveStream &) const;
        ///
@@ -51,10 +54,13 @@ public:
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       std::string name_;
+       docstring name_;
        /// are we finished creating the name?
        bool final_;
        ///
        bool black_;
 };
+
+
+} // namespace lyx
 #endif