]> git.lyx.org Git - lyx.git/blob - src/insets/insetsection.h
Make it compile when USE_BOOST_FORMAT is unset
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "LString.h"
20
21 #include "insettext.h"
22
23 /** A colapsable text inset
24 */
25 class InsetSection : public InsetText {
26 public:
27 protected:
28 private:
29         string type_;
30 };
31
32 #endif