2002-06-13 13:43:51 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file xforms/forms_fwd.h
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-06-13 13:43:51 +00:00
|
|
|
*
|
2002-09-05 14:10:50 +00:00
|
|
|
* \author Angus Leeming
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-06-13 13:43:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMS_FWD_H
|
|
|
|
#define FORMS_FWD_H
|
|
|
|
|
|
|
|
|
|
|
|
/// Can't forward declare the typedef, but this works fine.
|
|
|
|
class forms_;
|
|
|
|
typedef forms_ FL_FORM;
|
|
|
|
|
|
|
|
class flobjs_;
|
|
|
|
typedef flobjs_ FL_OBJECT;
|
|
|
|
|
|
|
|
typedef int FL_Coord;
|
|
|
|
|
|
|
|
#endif // FORMS_FWD_H
|