mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
0a26faefd1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1876 a592a061-630c-0410-9148-cb99ea01b6c8
19 lines
398 B
C++
19 lines
398 B
C++
#ifndef FORMCREDITSDIALOGIMPL_H
|
|
#define FORMCREDITSDIALOGIMPL_H
|
|
#include "FormCreditsDialog.h"
|
|
|
|
class FormCredits;
|
|
|
|
class FormCreditsDialogImpl : public FormCreditsDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FormCreditsDialogImpl( FormCredits* form, QWidget* parent = 0,
|
|
const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
|
|
~FormCreditsDialogImpl();
|
|
|
|
};
|
|
|
|
#endif // FORMCREDITSDIALOGIMPL_H
|