]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathMacroTemplate.h
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / mathed / MathMacroTemplate.h
index cdf5073544388a3576fcf331d9e24492510d77b5..c24fd16f80433e8b28ad8de6a64d7d6ae12abf9f 100644 (file)
@@ -13,8 +13,8 @@
 #ifndef MATH_MACROTEMPLATE_H
 #define MATH_MACROTEMPLATE_H
 
-#include "MathArray.h"
-#include "MathMacroTable.h"
+#include "MathData.h"
+#include "MacroTable.h"
 #include "InsetMathNest.h"
 
 #include "support/types.h"
@@ -30,8 +30,8 @@ public:
        ///
        MathMacroTemplate(docstring const & name, int nargs,
                docstring const & type,
-               MathArray const & = MathArray(),
-               MathArray const & = MathArray());
+               MathData const & = MathData(),
+               MathData const & = MathData());
        ///
        explicit MathMacroTemplate(const docstring & str);
        ///
@@ -46,7 +46,7 @@ public:
        void write(WriteStream & os) const;
        ///
        int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+                     OutputParams const &) const;
 
        /// Number of arguments
        int numargs() const;
@@ -65,10 +65,10 @@ public:
        /// identifies macro templates
        MathMacroTemplate const * asMacroTemplate() const { return this; }
        ///
-       InsetBase::Code lyxCode() const { return MATHMACRO_CODE; }
+       Inset::Code lyxCode() const { return MATHMACRO_CODE; }
 
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
        /// prefix in inset
        docstring prefix() const;