]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_data.h
fix build, thesaurus
[lyx.git] / src / mathed / math_data.h
index 4c5b7fbf0426e8ec71405ba4dd6c95b8185cfb88..2e029e2aa195ca0e8a44a74c902e911f35ffa9d3 100644 (file)
  *   the GNU General Public Licence version 2 or later.
  */
 
-#ifndef MATHEDARRAY_H
-#define MATHEDARRAY_H
+#ifndef MATH_DATA_H
+#define MATH_DATA_H
 
+#include <iosfwd>
 #include <vector>
 
 #include "math_atom.h"
 
 class MathMacro;
 class LaTeXFeatures;
+class ReplaceData;
 
 
 #ifdef __GNUG__
@@ -48,6 +50,12 @@ public:
        typedef buffer_type::iterator        iterator;
        ///
        typedef buffer_type::size_type       size_type;
+       ///
+       typedef buffer_type::difference_type difference_type;
+       ///
+       typedef buffer_type::size_type       idx_type;
+       ///
+       typedef buffer_type::size_type       pos_type;
 
 public:
        ///
@@ -102,8 +110,14 @@ public:
        void dump2() const;
        ///
        void substitute(MathMacro const &);
-       ///
+       /// looks for exact match
        bool match(MathArray const &) const;
+       /// looks for inclusion match starting at pos
+       bool matchpart(MathArray const &, pos_type pos) const;
+       /// looks for containment
+       const_iterator find(MathArray const &) const;
+       ///
+       void replace(ReplaceData &);
 
        ///
        MathAtom & at(size_type pos);
@@ -125,4 +139,8 @@ private:
        buffer_type bf_;
 };
 
+///
+std::ostream & operator<<(std::ostream & os, MathArray const & ar);
+
+
 #endif