X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFloatList.h;h=50db0944b2c5b7b0fdbb1e3d7b4d32d03554727a;hb=823e44822e6638824900eee2f7e2e7165af97f8d;hp=2b6082d24016ad28bc2815f26933137cfea84b67;hpb=236ea81bc5c0ce7101c9460d1ee97b8f3c9be9df;p=lyx.git diff --git a/src/FloatList.h b/src/FloatList.h index 2b6082d240..50db0944b2 100644 --- a/src/FloatList.h +++ b/src/FloatList.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * * Full author contact details are available in file CREDITS. */ @@ -12,17 +12,20 @@ #ifndef FLOATLIST_H #define FLOATLIST_H +#include "Floating.h" + #include +#include + -#include "support/std_string.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