]> git.lyx.org Git - lyx.git/blob - src/insets/insetfoot.h
remove lowercase, better layout handling and some variable renameing
[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 "LaTeXFeatures.h"
22 #include "insetfootlike.h"
23
24 /** The footnote inset
25   
26 */
27 class InsetFoot : public InsetFootlike {
28 public:
29         ///
30         InsetFoot(BufferParams const &);
31         ///
32         InsetFoot(InsetFoot const &, bool same_id = false);
33         ///
34         Inset * clone(Buffer const &, bool same_id = false) const;
35         ///
36         Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
37         ///
38         int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
39         ///
40         string const editMessage() const;
41 };
42
43 #endif
44
45
46