You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
419 B
26 lines
419 B
10 months ago
|
#ifndef DIFFDISPLAYDIALOG_H
|
||
|
#define DIFFDISPLAYDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class DiffDisplayDialog;
|
||
|
}
|
||
|
|
||
|
class DiffDisplayDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit DiffDisplayDialog(QString filename, QString diff, QWidget *parent = nullptr);
|
||
|
~DiffDisplayDialog();
|
||
|
|
||
|
private slots:
|
||
|
void onDoneClicked();
|
||
|
|
||
|
private:
|
||
|
Ui::DiffDisplayDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // DIFFDISPLAYDIALOG_H
|