]> git.lyx.org Git - lyx.git/blob - src/insets/insetfoot.h
Make it compile when USE_BOOST_FORMAT is unset
[lyx.git] / src / insets / insetfoot.h
1 // -*- C++ -*-
2 /**
3  * \file insetfoot.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Vigna
8  * \author Lars Gullik Bjønnes
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef INSETFOOT_H
14 #define INSETFOOT_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "LaTeXFeatures.h"
21 #include "insetfootlike.h"
22
23 /** The footnote inset
24
25 */
26 class InsetFoot : public InsetFootlike {
27 public:
28         ///
29         InsetFoot(BufferParams const &);
30         ///
31         InsetFoot(InsetFoot const &, bool same_id = false);
32         ///
33         Inset * clone(Buffer const &, bool same_id = false) const;
34         ///
35         Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
36         ///
37         int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
38         ///
39         int docbook(Buffer const *, std::ostream &, bool mixcont) const;
40         ///
41         string const editMessage() const;
42 };
43
44 #endif