]> git.lyx.org Git - lyx.git/blob - src/insets/insetmarginal.h
fix #832
[lyx.git] / src / insets / insetmarginal.h
1 // -*- C++ -*-
2 /**
3  * \file insetmarginal.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 INSETMARGINAL_H
14 #define INSETMARGINAL_H
15
16
17 #include "insetfootlike.h"
18
19 /** The marginal note inset
20
21 */
22 class InsetMarginal : public InsetFootlike {
23 public:
24         ///
25         InsetMarginal(BufferParams const &);
26         ///
27         InsetMarginal(InsetMarginal const &, bool same_id = false);
28         ///
29         Inset * clone(Buffer const &, bool same_id = false) 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
38 #endif