]> git.lyx.org Git - lyx.git/blobdiff - src/TocBackend.h
Scons: update_po target, part one: language_l10n.pot
[lyx.git] / src / TocBackend.h
index 379c47e536b1689e9c28f9cfa6e96cad55d41c71..ba8f9f8f385a4298763400acc57b45fd5a4baa5f 100644 (file)
@@ -96,28 +96,25 @@ public:
        void setBuffer(Buffer const * buffer)
        { buffer_ = buffer; }
        ///
-       bool addType(std::string const & type);
-       ///
        void update();
+       ///
+       void updateItem(ParConstIterator const & pit);
+
        ///
        TocList const & tocs() const
        { return tocs_; }
-       ///
-       std::vector<std::string> const & types() const
-       { return types_; }
+
        ///
        Toc const & toc(std::string const & type) const;
        /// Return the first Toc Item before the cursor
        TocIterator const item(std::string const & type, ParConstIterator const &) const;
 
-       void asciiTocList(std::string const & type, odocstream & os) const;
+       void writePlaintextTocList(std::string const & type, odocstream & os) const;
 
 private:
        /// 
        TocList tocs_;
        ///
-       std::vector<std::string> types_;
-       ///
        Buffer const * buffer_;
 
 }; // TocBackend