]> git.lyx.org Git - lyx.git/blob - src/insets/insetsection.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetsection.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *
7  *           Copyright 2000-2001 The LyX Team.
8  *
9  *======================================================
10  */
11
12
13 #ifndef INSETSECTION_H
14 #define INSETSECTION_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "LString.h"
21
22 #include "insettext.h"
23
24 /** A colapsable text inset
25 */
26 class InsetSection : public InsetText {
27 public:
28 protected:
29 private:
30         string type_;
31 };
32
33 #endif