]> git.lyx.org Git - lyx.git/blob - src/insets/insetfoot.h
get rid of same_id from function signatures
[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 &);
29         ///
30         //InsetFoot(InsetFoot const &, bool same_id);
31         ///
32         Inset * clone(Buffer const &) const;
33         ///
34         //Inset * clone(Buffer const &, bool same_id) const;
35         ///
36         Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
37         ///
38         int latex(Buffer const *, std::ostream &,
39                   LatexRunParams const &) const;
40         ///
41         int docbook(Buffer const *, std::ostream &, bool mixcont) const;
42         ///
43         string const editMessage() const;
44 };
45
46 #endif