]> git.lyx.org Git - lyx.git/blob - src/insets/insetlist.h
Make it compile when USE_BOOST_FORMAT is unset
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "insetcollapsable.h"
20
21 /** The list inset
22
23 */
24 class InsetList : public InsetCollapsable {
25 public:
26         ///
27         InsetList();
28         ///
29         void write(Buffer const * buf, std::ostream & os) const;
30         ///
31         Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
32         ///
33         int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
34         ///
35         string const editMessage() const;
36 };
37
38 #endif