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