]> 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 0ef06b3e73e4f086fc81193eea7eff21cfe3b203..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 &, lyx::odocstream &,
+       int docbook(Buffer const &, odocstream &,
                    OutputParams const &) const;
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif