stopParser

This commit is contained in:
krivoshein
2025-01-27 15:17:49 +03:00
parent 5aa24ad242
commit eebe56dd6c
3 changed files with 32 additions and 1 deletions

View File

@@ -19,6 +19,9 @@ public:
explicit TaskTreePreparation(QObject *parent = nullptr);
~TaskTreePreparation();
public:
void stopParser();
private:
QTreeWidgetItem* addModuleToTreeWidget(Module* module, QTreeWidgetItem* parentItem = nullptr);
void loadAMMtasksFromXML(QByteArray array);
@@ -34,6 +37,7 @@ Q_SIGNALS:
private:
QList<QTreeWidgetItem*> listItems;
QList<Module*>* listAllModules;
bool flagStop;
};
#endif // TASKTREEPREPARATION_H