]> git.lyx.org Git - lyx.git/blobdiff - src/FloatList.h
Forgot this one.
[lyx.git] / src / FloatList.h
index 2b6082d24016ad28bc2815f26933137cfea84b67..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>
+
 
-#include "support/std_string.h"
+namespace lyx {
 
-class Floating;
 
 ///
 class FloatList {
 public:
        ///
-       typedef std::map<string, Floating> List;
+       typedef std::map<std::string, Floating> List;
        ///
        typedef List::const_iterator const_iterator;
        ///
@@ -34,18 +37,27 @@ public:
        ///
        void newFloat(Floating const & fl);
        ///
-       string const defaultPlacement(string const & t) const;
+       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 typeExist(string const & t) const;
+       bool allowsWide(std::string const & t) const;
        ///
-       Floating const & getType(string const & t) const;
+       bool allowsSideways(std::string const & t) const;
        ///
-       void erase(string const & t);
+       Floating const & getType(std::string const & t) const;
        ///
-       const_iterator operator[](string const & t) const;
+       void erase(std::string const & t);
+       ///
+       const_iterator operator[](std::string const & t) const;
 private:
        ///
        List list;
 };
 
+
+} // namespace lyx
+
 #endif