Qv2ray/vinteract.h
2019-04-12 11:00:03 +08:00

22 lines
328 B
C++

#ifndef VINTERACT_H
#define VINTERACT_H
#include <QString>
#include <QProcess>
#include "mainwindow.h"
bool validationCheck(QString path);
class v2Instance
{
public:
explicit v2Instance();
void start(MainWindow *parent);
void stop();
QProcess *v2Process;
~v2Instance();
private:
};
#endif // VINTERACT_H