This repository has been archived on 2024-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
UTPass/plugins/Git/git.h

20 lines
217 B
C
Raw Permalink Normal View History

2019-09-21 21:43:01 +00:00
#ifndef GIT_H
#define GIT_H
#include <QObject>
#include <QUrl>
class Git : public QObject
{
Q_OBJECT
public:
Git();
2019-10-07 15:59:55 +00:00
~Git();
Q_INVOKABLE bool clone(QUrl clone_url, QString dir_out);
2019-09-21 21:43:01 +00:00
};
#endif