]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.h
remove unneeded member
[lyx.git] / src / mathed / math_macrotemplate.h
index a6a5743632cf2a554360f01e1e8e88e584616765..a8f09a04ad75af19df95e803d703f623dad6361c 100644 (file)
@@ -1,10 +1,9 @@
 // -*- C++ -*-
-#ifndef MATHMACROTEMPLATE
-#define MATHMACROTEMPLATE
+#ifndef MATH_MACROTEMPLATE_H
+#define MATH_MACROTEMPLATE_H
 
-#include <set>
-
-#include "math_parinset.h"
+#include "math_nestinset.h"
+#include "LString.h"
 
 #ifdef __GNUG__
 #pragma interface
@@ -15,32 +14,35 @@ class MathMacro;
 /** This class contains the macro definition
     \author Alejandro Aguilar Sierra
  */
-//class MathMacroTemplate : public MathParInset, boost::noncopyable 
+//class MathMacroTemplate : public MathInset, boost::noncopyable
 
-class MathMacroTemplate : public MathParInset {
+class MathMacroTemplate : public MathNestInset {
 public:
        ///
        MathMacroTemplate();
        ///
        MathMacroTemplate(string const & name, int nargs);
        ///
-       void WriteDef(std::ostream &, bool fragile) const;
+       MathInset * clone() const;
+       ///
+       void write(WriteStream & os) const;
        /// Number of arguments
-       int nargs() const;
+       int numargs() const;
+       ///
+       void numargs(int);
        ///
-       void draw(Painter &, int, int);
+       string const & name() const;
        ///
-       void Metrics();
+       void draw(MathPainterInfo &, int x, int y) const;
+       ///
+       void metrics(MathMetricsInfo & st) const;
+       /// identifies macro templates
+       MathMacroTemplate * asMacroTemplate() { return this; }
 private:
        ///
-       int na_;
+       int numargs_;
        ///
-       std::set<MathMacro *> users_;
-
-       /// unimplemented
-       void operator=(MathMacroTemplate const &);
-       /// unimplemented
-       MathMacroTemplate(MathMacroTemplate const &);
+       string name_;
 };
 
 #endif