#ifndef GIT_H #define GIT_H #include #include 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