]> 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 a12310195196097643d51dd2b397cc7b752645ba..222cb482cc8e0ca9efdf30e0f7ef8e3fb297f1f6 100644 (file)
@@ -1,27 +1,40 @@
 // -*- C++ -*-
+/**
+ * \file math_exfuncinset.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_EXFUNCINSET_H
 #define MATH_EXFUNCINSET_H
 
 
 #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);
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void metrics(MetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       string name() const;
+       std::string name() const;
 
        ///
        void maple(MapleStream &) const;
@@ -36,6 +49,6 @@ public:
 
 private:
        ///
-       string const name_;
+       std::string const name_;
 };
 #endif