mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-26 00:26:40 +00:00
21 lines
282 B
C
21 lines
282 B
C
|
#ifndef GIT_H
|
||
|
#define GIT_H
|
||
|
|
||
|
#include <QUrl>
|
||
|
#include <QObject>
|
||
|
|
||
|
|
||
|
class Git : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
Git();
|
||
|
~Git() override = default;
|
||
|
|
||
|
Q_INVOKABLE bool clone(QString url, QString path);
|
||
|
// Q_INVOKABLE bool update(QUrl url, QString path);
|
||
|
};
|
||
|
|
||
|
#endif
|