mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 10:08:28 +08:00
16 lines
278 B
C++
16 lines
278 B
C++
#ifndef BUILDVBOX_H
|
|
#define BUILDVBOX_H
|
|
#include <QString>
|
|
|
|
class buildvbox
|
|
{
|
|
// Q_OBJECT
|
|
public:
|
|
buildvbox(QString isoPath, int id=0);
|
|
void CleanScreen();
|
|
QString GetNet();
|
|
int Download(QString url, QString path, QString fileName);
|
|
};
|
|
|
|
#endif // BUILDVBOX_H
|