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
2019-10-07 18:18:50 +02:00

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