]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.h
the DocIterator stuff
[lyx.git] / src / mathed / math_macrotemplate.h
index 406515756f226eb16523f180c6bc4b7c13932746..a246e904088ff60418c131938e8566ec5275828a 100644 (file)
 
 #include "math_data.h"
 #include "math_nestinset.h"
-#include "support/std_string.h"
+
+#include <string>
 
 
 class MathMacro;
 
+
 //class MathMacroTemplate : public MathInset, boost::noncopyable
 
 /// This class contains the macro definition.
@@ -28,7 +30,7 @@ public:
        ///
        MathMacroTemplate();
        ///
-       MathMacroTemplate(string const & name, int nargs, string const & type,
+       MathMacroTemplate(std::string const & name, int nargs, std::string const & type,
                MathArray const & = MathArray(), MathArray const & = MathArray());
        ///
        explicit MathMacroTemplate(std::istream & is);
@@ -41,7 +43,7 @@ public:
        ///
        void numargs(int);
        ///
-       string name() const;
+       std::string name() const;
        ///
        void draw(PainterInfo &, int x, int y) const;
        ///
@@ -54,9 +56,9 @@ private:
        ///
        int numargs_;
        ///
-       string name_;
+       std::string name_;
        /// newcommand or renewcommand or def
-       string type_;
+       std::string type_;
 };
 
 #endif