]> git.lyx.org Git - lyx.git/blob - src/insets/insetfoot.h
Final touch 'inset display()'; fix 'is a bit silly' bug
[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 #include "insetfootlike.h"
17
18 /** The footnote inset
19
20 */
21 class InsetFoot : public InsetFootlike {
22 public:
23         ///
24         InsetFoot(BufferParams const &);
25         ///
26         InsetFoot(InsetFoot const &);
27         ///
28         virtual std::auto_ptr<InsetBase> clone() const;
29         ///
30         InsetOld::Code lyxCode() const { return InsetOld::FOOT_CODE; }
31         ///
32         int latex(Buffer const &, std::ostream &,
33                   LatexRunParams const &) const;
34         ///
35         int docbook(Buffer const &, std::ostream &, bool mixcont) const;
36         ///
37         std::string const editMessage() const;
38 };
39
40 #endif