X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFloatList.h;h=c8a9df46e2fa4d756a2fe79bee633de3d8e98788;hb=78046794ccfce3a20751e00b35295c290853afd6;hp=2b6082d24016ad28bc2815f26933137cfea84b67;hpb=236ea81bc5c0ce7101c9460d1ee97b8f3c9be9df;p=lyx.git diff --git a/src/FloatList.h b/src/FloatList.h index 2b6082d240..c8a9df46e2 100644 --- a/src/FloatList.h +++ b/src/FloatList.h @@ -13,8 +13,8 @@ #define FLOATLIST_H #include +#include -#include "support/std_string.h" class Floating; @@ -22,7 +22,7 @@ class Floating; class FloatList { public: /// - typedef std::map List; + typedef std::map 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;