]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.h
clear()->erase() ; lots of using directives for cxx
[lyx.git] / src / insets / insetfoot.h
index 6a3249ec0985b3ba84c58fef6338d71ecae95c35..c3cadca668719d91f4aefff88f11a636f8020e88 100644 (file)
@@ -20,7 +20,6 @@
 
 #include "insetcollapsable.h"
 
-
 class Painter;
 
 /** The footnote inset
@@ -29,6 +28,7 @@ class Painter;
 class InsetFoot : public InsetCollapsable {
 public:
     ///
+       explicit
     InsetFoot(Buffer *);
     ///
     ~InsetFoot() {}
@@ -36,20 +36,17 @@ public:
     Inset * Clone() const;
     ///
     Inset::Code LyxCode() const { return Inset::FOOT_CODE; }
-#ifndef USE_OSTREAM_ONLY
     ///
-    int Latex(string &, signed char) const;
-#endif
+    int Latex(std::ostream &, bool fragile, bool fp) const;
     ///
-    int Latex(ostream &, signed char, bool fp) const;
+    const char * EditMessage() const;
     ///
-    void Write(ostream &) const;
+    bool InsertInset(BufferView *, Inset * inset);
     ///
-    void Read(LyXLex &);
+    bool InsertInsetAllowed(Inset * inset) const;
     ///
-    const char * EditMessage() const;
+    LyXFont GetDrawFont(LyXParagraph * par, int pos) const;
     ///
-    bool InsertInset(BufferView *, Inset * inset);
 };
 
 #endif