mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-26 21:37:04 +08:00
13 lines
250 B
C++
13 lines
250 B
C++
#include "InstallHelper.h"
|
|
|
|
InstallHelper::InstallHelper(QObject *parent)
|
|
: QObject{parent}
|
|
{
|
|
installing(false);
|
|
}
|
|
|
|
void InstallHelper::install(const QString& path,bool isHome,bool isStartMenu){
|
|
installing(true);
|
|
qDebug()<<path;
|
|
}
|