]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.h
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetlist.h
index a8e1a27c0f129374db548c725988ba1c4a2eb37e..9e3df491dbb66f53ffedb8a76e42f2dbcbed449c 100644 (file)
@@ -1,7 +1,7 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
  *
  *           Copyright 1998 The LyX Team.
 
 #include "insetcollapsable.h"
 
-class Painter;
+/** The list inset
 
-/** The footnote inset
-  
 */
 class InsetList : public InsetCollapsable {
 public:
        ///
-       explicit
        InsetList();
        ///
-       ~InsetList() {}
-       ///
-       void Write(Buffer const * buf, std::ostream & os) const;
-       ///
-       Inset * Clone() const;
-       ///
-       Inset::Code LyxCode() const { return Inset::FOOT_CODE; }
-       ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
-       ///
-       const char * EditMessage() const;
+       void write(Buffer const * buf, std::ostream & os) const;
        ///
-       bool InsertInset(BufferView *, Inset * inset);
+       Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
        ///
-       bool InsertInsetAllowed(Inset * inset) const;
+       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
-       LyXFont GetDrawFont(BufferView *, LyXParagraph * par, int pos) const;
+       string const editMessage() const;
 };
 
 #endif