// -*- C++ -*- /** * \file QErrorListDialog.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Alfredo Braunstein * * Full author contact details are available in file CREDITS. */ #ifndef QERRORLISTDIALOG_H #define QERRORLISTDIALOG_H #include "ui/QErrorListDialogBase.h" class QErrorList; class QErrorListDialog : public QErrorListDialogBase { Q_OBJECT public: QErrorListDialog(QErrorList * form); ~QErrorListDialog(); public slots: void select_adaptor(int); protected: void closeEvent(QCloseEvent * e); private: QErrorList * form_; }; #endif // QTOCERRORLIST_H