source: s10k/Vago/xmlprocessor.h@ 1157

Last change on this file since 1157 was 1093, checked in by s10k, 7 years ago

Vago 1.4

File size: 440 bytes
RevLine 
[771]1#ifndef XMLCOMMAND_H
2#define XMLCOMMAND_H
3#include <QProcess>
4#include <QThread>
5
[1047]6#include "utilvago.h"
[811]7
[771]8class XmlProcessor : public QThread
9{
10 Q_OBJECT
11public:
[1093]12 XmlProcessor(QString AppDir, QStringList *commands);
[771]13private:
[815]14 QString AppDir;
[771]15 QStringList *commands;
16
17protected:
18 void run(); //for thread
19signals:
20 void resultConversion(QString result, int numErrors);
21};
22
23
24
25#endif // XMLCOMMAND_H
Note: See TracBrowser for help on using the repository browser.