X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFloatList.h;h=5c0c3a7355830da940e218186a72fb1e06fa19d3;hb=9d8a45b5c055ef49e45c34ba0d751a0256d97e15;hp=94eb53ee89b434e6b70e1ddc59792c4a19cc43ca;hpb=1f9d992ce0b5d33341215dc8dece45fe1b5bccf0;p=lyx.git diff --git a/src/FloatList.h b/src/FloatList.h index 94eb53ee89..5c0c3a7355 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. */ @@ -18,6 +18,9 @@ #include +namespace lyx { + + /// class FloatList { public: @@ -36,8 +39,14 @@ public: /// std::string const defaultPlacement(std::string const & t) const; /// + std::string const allowedPlacement(std::string const & t) const; + /// bool typeExist(std::string const & t) const; /// + bool allowsWide(std::string const & t) const; + /// + bool allowsSideways(std::string const & t) const; + /// Floating const & getType(std::string const & t) const; /// void erase(std::string const & t); @@ -48,4 +57,7 @@ private: List list; }; + +} // namespace lyx + #endif