]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_data.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_data.h
index f47d9dac015ff36e44aa27ff6e217db1a1134bf4..2b94c69dd074633e663f07d34f24079435acddc1 100644 (file)
@@ -1,7 +1,7 @@
 // -*- C++ -*-
 /*
- *  Purpose:     A general purpose resizable array.  
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
+ *  Purpose:     A general purpose resizable array.
+ *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  *  Created:     January 1996
  *
  *  Dependencies: None (almost)
  *   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"
-#include "LString.h"
 
-class MathScriptInset;
 class MathMacro;
 class LaTeXFeatures;
+class ReplaceData;
 
 
 #ifdef __GNUG__
@@ -33,7 +33,7 @@ class LaTeXFeatures;
 
 /** \class MathArray
     \brief Low level container for math insets
-    
+
     \author Alejandro Aguilar Sierra
     \author André Pönitz
     \author Lars Gullik Bjønnes
@@ -50,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:
        ///
@@ -67,7 +73,7 @@ public:
        void clear();
        ///
        void swap(MathArray &);
-       
+
        ///
        void insert(size_type pos, MathAtom const &);
        ///
@@ -93,12 +99,25 @@ public:
        ///
        MathAtom & back();
 
+       ///
+       MathAtom & front();
+       ///
+       MathAtom const & front() const;
+
        ///
        void dump() const;
        ///
        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
+       bool contains(MathArray const &) const;
+       ///
+       void replace(ReplaceData &);
 
        ///
        MathAtom & at(size_type pos);
@@ -107,9 +126,9 @@ public:
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       const_iterator begin() const;   
+       const_iterator begin() const;
        ///
-       const_iterator end() const;     
+       const_iterator end() const;
        ///
        iterator begin();
        ///
@@ -120,4 +139,8 @@ private:
        buffer_type bf_;
 };
 
+///
+std::ostream & operator<<(std::ostream & os, MathArray const & ar);
+
+
 #endif