00001
00002
00003
00004
00005
00006
00007 #ifndef DLG_ERROR_REPORT_ABSTRACT_BASE_H
00008 #define DLG_ERROR_REPORT_ABSTRACT_BASE_H
00009
00010 #include <QDialog>
00011
00013 class DlgErrorReportAbstractBase : public QDialog
00014 {
00015 public:
00017 DlgErrorReportAbstractBase (QWidget *parent = 0);
00018 ~DlgErrorReportAbstractBase();
00019
00020 protected:
00022 QString errorFile () const;
00023
00025 void saveFile (const QString &xml) const;
00026
00027 private:
00028
00029 };
00030
00031 #endif // DLG_ERROR_REPORT_ABSTRACT_BASE_H