]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.h
ws changes only
[lyx.git] / src / insets / insetfoot.h
index d20a0510b8abf06bb5fa2527d6a22a3b8df80829..821c73016d5bf8dac117e06db974c1db25e4d0a5 100644 (file)
@@ -7,17 +7,12 @@
  * \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
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "LaTeXFeatures.h"
 #include "insetfootlike.h"
 
 /** The footnote inset
@@ -28,17 +23,18 @@ public:
        ///
        InsetFoot(BufferParams const &);
        ///
-       InsetFoot(InsetFoot const &, bool same_id = false);
+       InsetFoot(InsetFoot const &);
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::FOOT_CODE; }
        ///
-       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
+       int latex(Buffer const &, std::ostream &,
+                 LatexRunParams const &) const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &, bool mixcont) const;
        ///
-       string const editMessage() const;
+       std::string const editMessage() const;
 };
 
 #endif