RedPanda-CPP/RedPandaIDE/vcs/gitpulldialog.h

23 lines
313 B
C
Raw Permalink Normal View History

2022-02-24 07:22:44 +08:00
#ifndef GITPULLDIALOG_H
#define GITPULLDIALOG_H
#include <QDialog>
namespace Ui {
class GitPullDialog;
}
class GitPullDialog : public QDialog
{
Q_OBJECT
public:
explicit GitPullDialog(QWidget *parent = nullptr);
~GitPullDialog();
private:
Ui::GitPullDialog *ui;
};
#endif // GITPULLDIALOG_H