]> git.lyx.org Git - lyx.git/blob - src/insets/insetfootlike.h
ab2eeb0f976f6e2487f0820bfcf2259d0204f0fe
[lyx.git] / src / insets / insetfootlike.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 InsetFootlike_H
15 #define InsetFootlike_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "insetcollapsable.h"
22
23 /** The footnote inset
24   
25 */
26 class InsetFootlike : public InsetCollapsable {
27 public:
28         ///
29         InsetFootlike();
30         ///
31         void Write(Buffer const * buf, std::ostream & os) const;
32         ///
33         //LyXFont GetDrawFont(BufferView *, LyXParagraph * par, int pos) const;
34 };
35
36 #endif
37
38
39
40
41