]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/fdesign_base.h
Introduce LFUN_PRINT.
[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
16 #include "forms_fwd.h"
17
18 /// A base class for the fdesign-generated structs
19 struct FD_base {
20         virtual ~FD_base();
21         FL_FORM * form;
22 };
23
24 #endif // FDESIGN_BASE_H