]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exintinset.h
move around stuff, remove unneeded declarations etc
[lyx.git] / src / mathed / math_exintinset.h
index 05e209c36a052a2153705781613a343011c7afd2..b1e11d8814fd0c9fe85b5f8d2e2104f0ddc20be5 100644 (file)
@@ -1,4 +1,14 @@
 // -*- C++ -*-
+/**
+ * \file math_exintinset.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_EXINTINSET_H
 #define MATH_EXINTINSET_H
 
 
 #include "math_nestinset.h"
 
+#include <string>
+
+
 // cell(0) is stuff before the 'd', cell(1) the stuff after
 class MathExIntInset : public MathNestInset {
 public:
        ///
-       explicit MathExIntInset(string const & name_);
+       explicit MathExIntInset(std::string const & name_);
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void symbol(string const &);
+       void symbol(std::string const &);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -39,7 +52,7 @@ private:
        bool hasScripts() const;
 
        ///
-       string symbol_;
+       std::string symbol_;
 };
 
 #endif