]> git.lyx.org Git - lyx.git/blob - src/insets/insetmarginal.h
reformatting and remove using delc
[lyx.git] / src / insets / insetmarginal.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
12 #ifndef INSETMARGINAL_H
13 #define INSETMARGINAL_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "insetfootlike.h"
20
21 /** The marginal note inset
22   
23 */
24 class InsetMarginal : public InsetFootlike {
25 public:
26         ///
27         InsetMarginal();
28         ///
29         Inset * Clone(Buffer const &) const;
30         ///
31         Inset::Code LyxCode() const { return Inset::MARGIN_CODE; }
32         ///
33         int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
34         ///
35         string const EditMessage() const;
36         ///
37         bool InsertInsetAllowed(Inset * inset) const;
38 };
39
40 #endif