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