mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-24 23:56:39 +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
|