]> git.lyx.org Git - lyx.git/blobdiff - src/FloatList.h
Add a Buffer::fully_loaded member function, returning true only when
[lyx.git] / src / FloatList.h
index ac9d832c61d366cf2e47ec217f652c09cb6aaa50..c8a9df46e2fa4d756a2fe79bee633de3d8e98788 100644 (file)
@@ -13,8 +13,8 @@
 #define FLOATLIST_H
 
 #include <map>
+#include <string>
 
-#include "LString.h"
 
 class Floating;
 
@@ -22,7 +22,7 @@ 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;