X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFloatList.h;h=b410ade851240e902eb042bea526ca5558059e77;hb=cd4033aef3a3f1efdb5a676b8bab3d367f53a830;hp=ac9d832c61d366cf2e47ec217f652c09cb6aaa50;hpb=1dffc5cfe45c34d9ef42d3d58d2ed4ce855339e2;p=lyx.git diff --git a/src/FloatList.h b/src/FloatList.h index ac9d832c61..b410ade851 100644 --- a/src/FloatList.h +++ b/src/FloatList.h @@ -12,17 +12,20 @@ #ifndef FLOATLIST_H #define FLOATLIST_H +#include "Floating.h" + #include +#include + -#include "LString.h" +namespace lyx { -class Floating; /// class FloatList { public: /// - typedef std::map List; + typedef std::map List; /// typedef List::const_iterator const_iterator; /// @@ -34,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