Engauge Digitizer  2
DlgErrorReportLocal.h
1 /******************************************************************************************************
2  * (C) 2016 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3  * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4  * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5  ******************************************************************************************************/
6 
7 #ifndef DLG_ERROR_REPORT_LOCAL_H
8 #define DLG_ERROR_REPORT_LOCAL_H
9 
10 #include "DlgErrorReportAbstractBase.h"
11 
12 class QPushButton;
13 
16 {
17  Q_OBJECT;
18 
19  public:
21  DlgErrorReportLocal (const QString &xmlWithImage,
22  QWidget *parent = 0);
24 
25  private:
27 
28  QPushButton *m_btnOk;
29  QString m_xmlOriginal;
30 };
31 
32 #endif // DLG_ERROR_REPORT_LOCAL_H
Dialog for saving error report to local hard drive.
Base class for dialogs that handle the error report.