lyx_mirror/src/insets/insetsection.h

30 lines
471 B
C
Raw Normal View History

// -*- C++ -*-
/**
* \file insetsection.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bj<EFBFBD>nnes
*
* Full author contact details are available in file CREDITS
*/
#ifndef INSETSECTION_H
#define INSETSECTION_H
#include "LString.h"
#include "insettext.h"
/** A colapsable text inset
*/
class InsetSection : public InsetText {
public:
protected:
private:
string type_;
};
#endif