]> 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 2fd833a8186559539f29923e9cd5c465389029b3..c3cadca668719d91f4aefff88f11a636f8020e88 100644 (file)
@@ -4,7 +4,7 @@
  * 
  *           LyX, The Document Processor
  *
- *           Copyright (C) 1998 The LyX Team.
+ *           Copyright 1998 The LyX Team.
  *
  *======================================================
  */
@@ -20,7 +20,6 @@
 
 #include "insetcollapsable.h"
 
-
 class Painter;
 
 /** The footnote inset
@@ -29,27 +28,25 @@ class Painter;
 class InsetFoot : public InsetCollapsable {
 public:
     ///
+       explicit
     InsetFoot(Buffer *);
     ///
     ~InsetFoot() {}
     ///
-    InsetFoot * Clone() const;
+    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) 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