]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/fdesign_base.h
Finish the business of strengthening the sed scripts and beautifying
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "forms_fwd.h"
20
21 /// A base class for the fdesign-generated structs
22 struct FD_base {
23         virtual ~FD_base();
24         FL_FORM * form;
25 };
26
27 #endif // FDESIGN_BASE_H