]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathChar.h
Fix comment according to Enricos explanation
[lyx.git] / src / mathed / InsetMathChar.h
index 9a583d96e9747e0ae7670db303b86ad56f2b0507..140c16829b7adc14d176d36710836bc39fa07aec 100644 (file)
 #include "InsetMath.h"
 
 
+namespace lyx {
+
 /// The base character inset.
 class InsetMathChar : public InsetMath {
 public:
        ///
-       explicit InsetMathChar(char c);
+       explicit InsetMathChar(char_type c);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -38,19 +40,22 @@ public:
        ///
        void octave(OctaveStream & os) const;
        ///
-       void mathmlize(MathMLStream & ms) const;
+       void mathmlize(MathStream & ms) const;
        /// identifies Charinsets
        InsetMathChar const * asCharInset() const { return this; }
        ///
-       char getChar() const { return char_; }
+       char_type getChar() const { return char_; }
        ///
        bool isRelOp() const;
 
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
        /// the character
-       char char_;
+       char_type char_;
        /// cached width
        mutable int width_;
 };
+
+} // namespace lyx
+
 #endif