20 lines
217 B
C++
20 lines
217 B
C++
#ifndef GIT_H
|
|
#define GIT_H
|
|
|
|
#include <QObject>
|
|
#include <QUrl>
|
|
|
|
class Git : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Git();
|
|
~Git();
|
|
|
|
Q_INVOKABLE bool clone(QUrl clone_url, QString dir_out);
|
|
|
|
};
|
|
|
|
#endif
|