]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_biginset.h
macro rework
[lyx.git] / src / mathed / math_biginset.h
index f5de3d1aa3b3fd68256825604f2690ca514fa984..df6899e234ff7fb78bf20c30a96b88a6055a2ab3 100644 (file)
 #define MATH_BIGINSET_H
 
 #include "math_diminset.h"
-#include "LString.h"
 
+#include <string>
 
 /// Inset for \bigl & Co.
 class MathBigInset : public MathDimInset {
 public:
        ///
-       MathBigInset(string const & name, string const & delim);
+       MathBigInset(std::string const & name, std::string const & delim);
        ///
        virtual std::auto_ptr<InsetBase> clone() const;
        ///
@@ -39,9 +39,9 @@ private:
        double increase() const;
 
        /// \bigl or what?
-       string const name_;
+       std::string const name_;
        /// ( or [ or Vert...
-       string const delim_;
+       std::string const delim_;
 };
 
 #endif