]> git.lyx.org Git - lyx.git/blobdiff - src/FloatList.h
Fixup f3a0e8ff: costly thinko
[lyx.git] / src / FloatList.h
index c8a9df46e2fa4d756a2fe79bee633de3d8e98788..5c0c3a7355830da940e218186a72fb1e06fa19d3 100644 (file)
@@ -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.
  */
 #ifndef FLOATLIST_H
 #define FLOATLIST_H
 
+#include "Floating.h"
+
 #include <map>
 #include <string>
 
 
-class Floating;
+namespace lyx {
+
 
 ///
 class FloatList {
@@ -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