]> git.lyx.org Git - lyx.git/blobdiff - src/FloatList.h
Dekels tabular/textinset patches
[lyx.git] / src / FloatList.h
index a328edb7d02e194eb7e8af18ce73bb2c3d497a3f..b95e9b6bc70ec2f2b0f1b1bce88f70c7341f3480 100644 (file)
@@ -27,16 +27,29 @@ public:
        ///
        typedef std::map<string, Floating> List;
        ///
+       typedef List::const_iterator const_iterator;
+       ///
        FloatList();
        ///
+       const_iterator begin() const;
+       ///
+       const_iterator end() const;
+       ///
        void newFloat(Floating const & fl);
        ///
-       string defaultPlacement(string const & t) const;
+       string const defaultPlacement(string const & t) const;
+       ///
+       bool typeExist(string const & t) const;
+       ///
+       Floating const & getType(string const & t) const;
+       ///
+       const_iterator operator[](string const & t) const;
 private:
        ///
        List list;
 };
 
+///
 extern FloatList floatList;
 
 #endif