File indexing completed on 2025-03-09 04:23:42

0001 #ifndef GITPROCESS_H
0002 #define GITPROCESS_H
0003 
0004 #include <QProcess>
0005 #include <QObject>
0006 
0007 class GitProcess : public QProcess
0008 {
0009   Q_OBJECT
0010 public:
0011   GitProcess();
0012 };
0013 
0014 #endif // GITPROCESS_H