]> git.lyx.org Git - lyx.git/blob - src/insets/insetfoot.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[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
19 namespace lyx {
20
21 /** The footnote inset
22
23 */
24 class InsetFoot : public InsetFootlike {
25 public:
26         ///
27         InsetFoot(BufferParams const &);
28         ///
29         InsetBase::Code lyxCode() const { return InsetBase::FOOT_CODE; }
30         ///
31         int latex(Buffer const &, odocstream &,
32                   OutputParams const &) const;
33         ///
34         int docbook(Buffer const &, odocstream &,
35                     OutputParams const & runparams) const;
36         ///
37         virtual docstring const editMessage() const;
38 protected:
39         InsetFoot(InsetFoot const &);
40 private:
41         virtual std::auto_ptr<InsetBase> doClone() const;
42 };
43
44
45 } // namespace lyx
46
47 #endif