]> git.lyx.org Git - lyx.git/blob - src/insets/insetsection.h
fix #832
[lyx.git] / src / insets / insetsection.h
1 // -*- C++ -*-
2 /**
3  * \file insetsection.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef INSETSECTION_H
13 #define INSETSECTION_H
14
15
16 #include "LString.h"
17
18 #include "insettext.h"
19
20 /** A colapsable text inset
21 */
22 class InsetSection : public InsetText {
23 public:
24 protected:
25 private:
26         string type_;
27 };
28
29 #endif