]> git.lyx.org Git - lyx.git/blob - src/insets/insetfoot.h
prepare for 1.1.6pre2
[lyx.git] / src / insets / insetfoot.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *
7  *           Copyright 1998 The LyX Team.
8  *
9  *======================================================
10  */
11 // The pristine updatable inset: Text
12
13
14 #ifndef INSETFOOT_H
15 #define INSETFOOT_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "insetfootlike.h"
22
23 /** The footnote inset
24   
25 */
26 class InsetFoot : public InsetFootlike {
27 public:
28         ///
29         InsetFoot();
30         ///
31         Inset * Clone(Buffer const &) const;
32         ///
33         Inset::Code LyxCode() const { return Inset::FOOT_CODE; }
34         ///
35         int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
36         ///
37         string const EditMessage() const;
38         ///
39         bool InsertInsetAllowed(Inset * inset) const;
40 };
41
42 #endif
43
44
45