]> git.lyx.org Git - lyx.git/blob - src/insets/insetmarginal.h
Copyright notices
[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 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "insetfootlike.h"
21
22 /** The marginal note inset
23
24 */
25 class InsetMarginal : public InsetFootlike {
26 public:
27         ///
28         InsetMarginal(BufferParams const &);
29         ///
30         InsetMarginal(InsetMarginal const &, bool same_id = false);
31         ///
32         Inset * clone(Buffer const &, bool same_id = false) const;
33         ///
34         Inset::Code lyxCode() const { return Inset::MARGIN_CODE; }
35         ///
36         int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
37         ///
38         string const editMessage() const;
39 };
40
41 #endif