]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_stringinset.h
move around stuff, remove unneeded declarations etc
[lyx.git] / src / mathed / math_stringinset.h
index 1b36519b132bd5df0ac520b307729e4e9423dfc7..bbbd670348893bdab95da87e4e4d0b26c0f48ac5 100644 (file)
@@ -1,4 +1,14 @@
 // -*- C++ -*-
+/**
+ * \file math_stringinset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_STRINGINSET_H
 #define MATH_STRINGINSET_H
 
 
 
 /** Some collection of chars with similar properties
- *  maily for math-extern
- *  \author André Pönitz
- *
- * Full author contact details are available in file CREDITS
+ *  mainly for math-extern
  */
 
 class MathStringInset : public MathInset {
 public:
        ///
-       explicit MathStringInset(string const & s);
+       explicit MathStringInset(std::string const & s);
        ///
-       InsetBase * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       string str() const { return str_; }
+       std::string str() const { return str_; }
        ///
        MathStringInset * asStringInset() { return this; }
 
@@ -42,6 +49,6 @@ public:
 
 private:
        /// the string
-       string str_;
+       std::string str_;
 };
 #endif