]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.h
* In the process of fixing the math background color bug, this commit transfer backgr...
[lyx.git] / src / insets / insetfoot.h
index 2d35572338f7f417740d4fe2ec0e6c4f8150a310..b74ea35fb08ace47ae25f1627d06a8ade5f502ab 100644 (file)
@@ -15,6 +15,9 @@
 
 #include "insetfootlike.h"
 
+
+namespace lyx {
+
 /** The footnote inset
 
 */
@@ -25,17 +28,23 @@ public:
        ///
        InsetBase::Code lyxCode() const { return InsetBase::FOOT_CODE; }
        ///
-       int latex(Buffer const &, lyx::odocstream &,
-                 OutputParams const &) const;
+       int latex(Buffer const &, odocstream &,
+                 OutputParams const &) const;
+       ///
+       int plaintext(Buffer const &, odocstream &,
+                     OutputParams const &) const;
        ///
-       int docbook(Buffer const &, std::ostream &,
-                   OutputParams const & runparams) const;
+       int docbook(Buffer const &, odocstream &,
+                   OutputParams const &) const;
        ///
-       virtual lyx::docstring const editMessage() const;
+       virtual docstring const editMessage() const;
 protected:
        InsetFoot(InsetFoot const &);
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif