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