]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetfoot.h
index 0990d632108f72f865453aae73dadd19143f0e88..46caafc48683b3f8e3883e42f7ecf7cf2f33f61d 100644 (file)
@@ -7,16 +7,17 @@
  * \author Jürgen Vigna
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSETFOOT_H
 #define INSETFOOT_H
 
-
-#include "LaTeXFeatures.h"
 #include "insetfootlike.h"
 
+
+namespace lyx {
+
 /** The footnote inset
 
 */
@@ -25,18 +26,22 @@ public:
        ///
        InsetFoot(BufferParams const &);
        ///
-       InsetFoot(InsetFoot const &, bool same_id = false);
-       ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
+       InsetBase::Code lyxCode() const { return InsetBase::FOOT_CODE; }
        ///
-       Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
+       int latex(Buffer const &, odocstream &,
+                 OutputParams const &) const;
        ///
-       int latex(Buffer const *, std::ostream &, LatexRunParams const &,
-                 bool fp) const;
+       int docbook(Buffer const &, odocstream &,
+                   OutputParams const & runparams) const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
-       ///
-       string const editMessage() const;
+       virtual docstring const editMessage() const;
+protected:
+       InsetFoot(InsetFoot const &);
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif