2019-04-06 17:16:42 +02:00
|
|
|
#include <QFile>
|
|
|
|
#include <QThread>
|
|
|
|
#include <QDebug>
|
|
|
|
#include "command.h"
|
2021-06-12 14:59:58 +02:00
|
|
|
#include "looqsgeneralexception.h"
|
2022-04-14 15:03:19 +02:00
|
|
|
|
|
|
|
void Command::execute()
|
|
|
|
{
|
|
|
|
int result = handle(arguments);
|
|
|
|
if(autoFinish)
|
|
|
|
{
|
|
|
|
emit finishedCmd(result);
|
|
|
|
}
|
|
|
|
}
|