mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-12 17:48:27 +08:00
22 lines
376 B
C++
22 lines
376 B
C++
/*
|
|
* gfdgd xi
|
|
* 依照 GPLV3 开源
|
|
*/
|
|
#ifndef BUILDVBOX_H
|
|
#define BUILDVBOX_H
|
|
#include <QString>
|
|
|
|
class buildvbox
|
|
{
|
|
// Q_OBJECT
|
|
public:
|
|
buildvbox(QString isoPath, int id=0, int vm=0);
|
|
void CleanScreen();
|
|
QString GetNet();
|
|
int Download(QString url, QString path, QString fileName);
|
|
int GetCPUSocket();
|
|
int GetCPUCore();
|
|
};
|
|
|
|
#endif // BUILDVBOX_H
|