UTPass/plugins/Git/git.h

18 lines
170 B
C
Raw 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();
~Git() override = default;
};
#endif