]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.h
fix #832
[lyx.git] / src / insets / insetlist.h
index bb8c02eb112070eb257cdac53765c56477feb343..78bb9a2ecd5203f8b803ccab30f6d09883a9f352 100644 (file)
@@ -1,42 +1,35 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insetlist.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 1998 The LyX Team.
+ * \author Lars Gullik Bjønnes
  *
- * ======================================================
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef InsetList_H
 #define InsetList_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcollapsable.h"
 
 /** The list inset
-  
+
 */
 class InsetList : public InsetCollapsable {
 public:
        ///
        InsetList();
        ///
-       void Write(Buffer const * buf, std::ostream & os) const;
-       ///
-       Inset * Clone() const;
-       ///
-       Inset::Code LyxCode() const { return Inset::FOOT_CODE; }
+       void write(Buffer const * buf, std::ostream & os) const;
        ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
+       Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
        ///
-       string const EditMessage() const;
+       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
-       bool InsertInsetAllowed(Inset * inset) const;
+       string const editMessage() const;
 };
 
 #endif