]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.h
remove unneeded member
[lyx.git] / src / mathed / math_macrotemplate.h
index e00164d0f970a0ac070a9d9a8e071d0d6bc0898a..a8f09a04ad75af19df95e803d703f623dad6361c 100644 (file)
@@ -3,6 +3,7 @@
 #define MATH_MACROTEMPLATE_H
 
 #include "math_nestinset.h"
+#include "LString.h"
 
 #ifdef __GNUG__
 #pragma interface
@@ -13,7 +14,7 @@ class MathMacro;
 /** This class contains the macro definition
     \author Alejandro Aguilar Sierra
  */
-//class MathMacroTemplate : public MathInset, boost::noncopyable 
+//class MathMacroTemplate : public MathInset, boost::noncopyable
 
 class MathMacroTemplate : public MathNestInset {
 public:
@@ -24,20 +25,24 @@ public:
        ///
        MathInset * clone() const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void write(WriteStream & os) const;
        /// Number of arguments
        int numargs() const;
        ///
        void numargs(int);
        ///
-       void draw(Painter &, int x, int y) const;
+       string const & name() const;
        ///
-       void metrics(MathStyles st) const;
+       void draw(MathPainterInfo &, int x, int y) const;
+       ///
+       void metrics(MathMetricsInfo & st) const;
+       /// identifies macro templates
+       MathMacroTemplate * asMacroTemplate() { return this; }
 private:
        ///
        int numargs_;
-       /// unimplemented
-       void operator=(MathMacroTemplate const &);
+       ///
+       string name_;
 };
 
 #endif