1#ifndef GITPULLDIALOG_H
2#define GITPULLDIALOG_H
3
4#include <QDialog>
5
6namespace Ui {
7class GitPullDialog;
8}
9
10class GitPullDialog : public QDialog
11{
12 Q_OBJECT
13
14public:
15 explicit GitPullDialog(QWidget *parent = nullptr);
16 ~GitPullDialog();
17
18private:
19 Ui::GitPullDialog *ui;
20};
21
22#endif // GITPULLDIALOG_H
23