mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-27 13:49:08 +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;
|
|||
|
}
|