]> git.lyx.org Git - lyx.git/blob - src/insets/insetmarginal.h
Final touch 'inset display()'; fix 'is a bit silly' bug
[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         virtual std::auto_ptr<InsetBase> clone() const;
30         ///
31         InsetOld::Code lyxCode() const { return InsetOld::MARGIN_CODE; }
32         ///
33         int latex(Buffer const &, std::ostream &,
34                   LatexRunParams const &) const;
35         ///
36         std::string const editMessage() const;
37 };
38
39 #endif