]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exfuncinset.h
tfracinset files is missing so all usage of tfrac is commented out
[lyx.git] / src / mathed / math_exfuncinset.h
index f0df9074959d263d82fcb7c47845ba61ffa1e5a8..222cb482cc8e0ca9efdf30e0f7ef8e3fb297f1f6 100644 (file)
 
 #include "math_nestinset.h"
 
+#include <string>
+
+
 // f(x) in one block (as opposed to 'f','(','x',')' or 'f','x')
 // for interfacing external programs
 
 class MathExFuncInset : public MathNestInset {
 public:
        ///
-       explicit MathExFuncInset(string const & name);
+       explicit MathExFuncInset(std::string const & name);
        ///
-       MathExFuncInset(string const & name, MathArray const & ar);
+       MathExFuncInset(std::string const & name, MathArray const & ar);
        ///
        virtual std::auto_ptr<InsetBase> clone() const;
        ///
@@ -31,7 +34,7 @@ public:
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       string name() const;
+       std::string name() const;
 
        ///
        void maple(MapleStream &) const;
@@ -46,6 +49,6 @@ public:
 
 private:
        ///
-       string const name_;
+       std::string const name_;
 };
 #endif