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

9
VM-source/vbox.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include "vbox.h"
#include "command.h"
vbox::vbox(QString name, QString managerPath) {
this->name = name;
this->managerPath = managerPath;
Command command = Command();
this->vboxVersion = Command().GetCommand("'" + managerPath + "' -v");
}