]> git.lyx.org Git - lyx.git/blob - src/insets/insetlist.h
ae460312410763cf6404889e5f466b66e461972c
[lyx.git] / src / insets / insetlist.h
1 // -*- C++ -*-
2 /**
3  * \file insetlist.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef INSETLIST_H
13 #define INSETLIST_H
14
15
16 #include "insetcollapsable.h"
17
18 /** The list inset
19
20 */
21 class InsetList : public InsetCollapsable {
22 public:
23         ///
24         InsetList();
25         ///
26         void write(Buffer const & buf, std::ostream & os) const;
27         ///
28         Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
29         ///
30         int latex(Buffer const &, std::ostream &,
31                   LatexRunParams const &) const;
32         ///
33         string const editMessage() const;
34 };
35
36 #endif