]> git.lyx.org Git - lyx.git/blob - src/insets/insetfoot.h
* BufferParams:
[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 plaintext(Buffer const &, odocstream &,
35                       OutputParams const &) const;
36         ///
37         int docbook(Buffer const &, odocstream &,
38                     OutputParams const &) const;
39         ///
40         virtual docstring const editMessage() const;
41 protected:
42         InsetFoot(InsetFoot const &);
43 private:
44         virtual std::auto_ptr<InsetBase> doClone() const;
45 };
46
47
48 } // namespace lyx
49
50 #endif