FluentUI/example/InstallHelper.cpp

13 lines
250 B
C++
Raw Normal View History

2023-03-02 18:21:43 +08:00
#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;
}