]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_inset.h
more IU
[lyx.git] / src / mathed / math_inset.h
index f7b247f8cba2dd41d12bddceb15607faa9915a9f..779e590fa38925b9bf8b6341770de4b4abbac321 100644 (file)
@@ -31,7 +31,7 @@ inclusion in the "real LyX insets" FormulaInset and FormulaMacroInset.
 
 */
 
-class LatexRunParams;
+class OutputParams;
 class MathArrayInset;
 class MathAMSArrayInset;
 class MathCharInset;
@@ -205,8 +205,6 @@ public:
 
        /// char char code if possible
        virtual void handleFont(std::string const &) {}
-       /// is this inset equal to a given other inset?
-       virtual bool match(MathAtom const &) const { return false; }
        /// replace things by other things
        virtual void replace(ReplaceData &) {}
        /// do we contain a given subsequence?
@@ -237,11 +235,11 @@ public:
        /// describe content if cursor behind
        virtual void infoize2(std::ostream &) const {}
        /// plain ascii output
-       virtual int ascii(std::ostream & os, LatexRunParams const &) const;
+       virtual int plaintext(std::ostream & os, OutputParams const &) const;
        /// linuxdoc output
-       virtual int linuxdoc(std::ostream & os, LatexRunParams const &) const;
+       virtual int linuxdoc(std::ostream & os, OutputParams const &) const;
        /// docbook output
-       virtual int docbook(std::ostream & os, LatexRunParams const &) const;
+       virtual int docbook(std::ostream & os, OutputParams const &) const;
 
        /// dump content to stderr for debugging
        virtual void dump() const;