mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-20 10:50:23 +08:00
22 lines
328 B
C++
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
|