]> git.lyx.org Git - lyx.git/blob - src/insets/insetmarginal.h
Clean up InsetGraphics::Cache and rename as GraphicsInset.
[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 &);
28         ///
29         Inset * clone() const;
30         ///
31         Inset::Code lyxCode() const { return Inset::MARGIN_CODE; }
32         ///
33         int latex(Buffer const *, std::ostream &,
34                   LatexRunParams const &) const;
35         ///
36         string const editMessage() const;
37 };
38
39 #endif