]> git.lyx.org Git - lyx.git/blobdiff - src/FloatList.h
Support lgathered and rgathered math environments
[lyx.git] / src / FloatList.h
index 2b6082d24016ad28bc2815f26933137cfea84b67..94eb53ee89b434e6b70e1ddc59792c4a19cc43ca 100644 (file)
 #ifndef FLOATLIST_H
 #define FLOATLIST_H
 
-#include <map>
+#include "Floating.h"
 
-#include "support/std_string.h"
+#include <map>
+#include <string>
 
-class Floating;
 
 ///
 class FloatList {
 public:
        ///
-       typedef std::map<string, Floating> List;
+       typedef std::map<std::string, Floating> List;
        ///
        typedef List::const_iterator const_iterator;
        ///
@@ -34,15 +34,15 @@ public:
        ///
        void newFloat(Floating const & fl);
        ///
-       string const defaultPlacement(string const & t) const;
+       std::string const defaultPlacement(std::string const & t) const;
        ///
-       bool typeExist(string const & t) const;
+       bool typeExist(std::string const & t) const;
        ///
-       Floating const & getType(string const & t) const;
+       Floating const & getType(std::string const & t) const;
        ///
-       void erase(string const & t);
+       void erase(std::string const & t);
        ///
-       const_iterator operator[](string const & t) const;
+       const_iterator operator[](std::string const & t) const;
 private:
        ///
        List list;