]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insettoc.h
index 126f10ef812eb1470f0b6e2ae3825244f4aa8c3c..73bf1b67d32972a0109c97fc63a5c3f7988e4314 100644 (file)
 #include "insetcommand.h"
 
 
+namespace lyx {
+
+
 /// Used to insert table of contents and similar lists
 class InsetTOC : public InsetCommand {
 public:
        ///
        explicit InsetTOC(InsetCommandParams const &);
        ///
-       lyx::docstring const getScreenLabel(Buffer const &) const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
@@ -29,13 +32,16 @@ public:
        ///
        bool display() const { return true; }
        ///
-       int plaintext(Buffer const &, lyx::odocstream &,
+       int plaintext(Buffer const &, odocstream &,
                  OutputParams const &) const;
        ///
-       int docbook(Buffer const &, std::ostream &,
+       int docbook(Buffer const &, odocstream &,
                    OutputParams const &) const;
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif