This commit is contained in:
2023-02-07 22:12:05 +08:00
parent df0580cba8
commit 107c886f3f
23 changed files with 255 additions and 70 deletions

16
VM-source/vbox.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef VBOX_H
#define VBOX_H
#include <QString>
class vbox
{
public:
vbox(QString name, QString managerPath="VBoxManage");
private:
// 虚拟机信息
QString name;
QString managerPath;
QString vboxVersion;
};
#endif // VBOX_H