X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFloatList.h;h=b410ade851240e902eb042bea526ca5558059e77;hb=2417d9d911dbca181c48f45d1aad26d31c9aa815;hp=40611c6464f5e7f213d3d3a30627670f20546fd6;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/FloatList.h b/src/FloatList.h index 40611c6464..b410ade851 100644 --- a/src/FloatList.h +++ b/src/FloatList.h @@ -12,16 +12,20 @@ #ifndef FLOATLIST_H #define FLOATLIST_H +#include "Floating.h" + #include +#include + + +namespace lyx { -#include "LString.h" -#include "Floating.h" /// class FloatList { public: /// - typedef std::map List; + typedef std::map List; /// typedef List::const_iterator const_iterator; /// @@ -33,18 +37,21 @@ 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; }; + +} // namespace lyx + #endif