X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfoot.h;h=275a69c39e181e3ffab1b70309da930af526e53c;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=d84e1327c2ae61504561f0b68009771bab43b819;hpb=8ed9dbabde30b31a6a14e032fa42f682a196ef7a;p=lyx.git diff --git a/src/insets/insetfoot.h b/src/insets/insetfoot.h index d84e1327c2..275a69c39e 100644 --- a/src/insets/insetfoot.h +++ b/src/insets/insetfoot.h @@ -18,6 +18,7 @@ #pragma interface #endif +#include "LaTeXFeatures.h" #include "insetfootlike.h" /** The footnote inset @@ -28,15 +29,15 @@ public: /// InsetFoot(); /// - Inset * Clone() const; + InsetFoot(InsetFoot const &, bool same_id = false); /// - Inset::Code LyxCode() const { return Inset::FOOT_CODE; } + Inset * clone(Buffer const &, bool same_id = false) const; /// - int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const; + Inset::Code lyxCode() const { return Inset::FOOT_CODE; } /// - const char * EditMessage() const; + int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const; /// - bool InsertInsetAllowed(Inset * inset) const; + string const editMessage() const; }; #endif