]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/fdesign_base.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / frontends / xforms / fdesign_base.h
1 // -*- C++ -*-
2 /**
3  * \file fdesign_base.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef FDESIGN_BASE_H
13 #define FDESIGN_BASE_H
14
15 #include "forms_fwd.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 /// A base class for the fdesign-generated structs
21 struct FD_base {
22         virtual ~FD_base();
23         FL_FORM * form;
24 };
25
26 } // namespace frontend
27 } // namespace lyx
28
29 #endif // FDESIGN_BASE_H