]> git.lyx.org Git - lyx.git/blob - src/insets/insetfoot.h
fix #832
[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
17 #include "LaTeXFeatures.h"
18 #include "insetfootlike.h"
19
20 /** The footnote inset
21
22 */
23 class InsetFoot : public InsetFootlike {
24 public:
25         ///
26         InsetFoot(BufferParams const &);
27         ///
28         InsetFoot(InsetFoot const &, bool same_id = false);
29         ///
30         Inset * clone(Buffer const &, bool same_id = false) const;
31         ///
32         Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
33         ///
34         int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
35         ///
36         int docbook(Buffer const *, std::ostream &, bool mixcont) const;
37         ///
38         string const editMessage() const;
39 };
40
41 #endif