15 рядки
222 B
C++
15 рядки
222 B
C++
#include <QFile>
|
|
#include <QThread>
|
|
#include <QDebug>
|
|
#include "command.h"
|
|
#include "looqsgeneralexception.h"
|
|
|
|
void Command::execute()
|
|
{
|
|
int result = handle(arguments);
|
|
if(autoFinish)
|
|
{
|
|
emit finishedCmd(result);
|
|
}
|
|
}
|