]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
* BufferParams:
[lyx.git] / src / insets / insettoc.h
index 126f10ef812eb1470f0b6e2ae3825244f4aa8c3c..81b135c9b1579fb317ac5ca9835401f76a25d3bd 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 &,
-                 OutputParams const &) const;
+       int plaintext(Buffer const &, odocstream &,
+                     OutputParams const &) const;
        ///
-       int docbook(Buffer const &, std::ostream &,
-                   OutputParams const &) const;
+       int docbook(Buffer const &, odocstream &,
+                   OutputParams const &) const;
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif