// -*- C++ -*- /** * \file QErrorList.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 QERRORLIST_H #define QERRORLIST_H #include "QDialogView.h" class ControlErrorList; class QErrorListDialog; class QErrorList : public QController > { public: friend class QErrorListDialog; QErrorList(Dialog &); private: /// select an entry void select(int item); /// required apply virtual void apply() {} /// build dialog virtual void build_dialog(); /// update contents virtual void update_contents(); }; #endif // QERRORLIST_H