Major reorganization of the project files
FossilOrigin-Name: 821239471319fdd5d530f54b7f67f473dcf7bd8e
This commit is contained in:
27
src/CloneDialog.h
Normal file
27
src/CloneDialog.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#ifndef CLONEDIALOG_H
|
||||
#define CLONEDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
class CloneDialog;
|
||||
}
|
||||
|
||||
class CloneDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit CloneDialog(QWidget *parent = 0);
|
||||
~CloneDialog();
|
||||
|
||||
static bool run(QWidget *parent, class QUrl &url, QString &repository);
|
||||
|
||||
private slots:
|
||||
void on_btnSelectRepository_clicked();
|
||||
|
||||
private:
|
||||
Ui::CloneDialog *ui;
|
||||
};
|
||||
|
||||
#endif // CLONEDIALOG_H
|
Reference in New Issue
Block a user