]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_boxinset.h
macro rework
[lyx.git] / src / mathed / math_boxinset.h
index 8358b99b65e3fbaf255e9bf391cc448b14bd0615..c155a76301cd3d4a0294dd8af8d69777cb133c44 100644 (file)
@@ -1,9 +1,20 @@
 // -*- C++ -*-
+/**
+ * \file math_boxinset.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_BOXINSET_H
 #define MATH_BOXINSET_H
 
 #include "math_nestinset.h"
-#include "LString.h"
+
+#include <string>
 
 
 class LyXFont;
@@ -13,9 +24,9 @@ class LyXFont;
 class MathBoxInset : public MathNestInset {
 public:
        ///
-       explicit MathBoxInset(string const & name);
+       explicit MathBoxInset(std::string const & name);
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
        mode_type currentMode() const { return TEXT_MODE; }
        ///
@@ -31,7 +42,7 @@ public:
 
 private:
        ///
-       string name_;
+       std::string name_;
 };