]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.h
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetlist.h
index d077849b3c8d25fdbc7a75e12073e87f77865335..2a43793f91b60e22272b3b1558d9b73a269921bc 100644 (file)
@@ -1,25 +1,22 @@
 // -*- 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
+#ifndef INSETLIST_H
+#define INSETLIST_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcollapsable.h"
 
 /** The list inset
-  
+
 */
 class InsetList : public InsetCollapsable {
 public:
@@ -28,11 +25,10 @@ public:
        ///
        void write(Buffer const * buf, std::ostream & os) const;
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const;
-       ///
        Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
        ///
-       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
+       int latex(Buffer const *, std::ostream &,
+                 LatexRunParams const &) const;
        ///
        string const editMessage() const;
 };