source: s10k/Vago/xmlprocessor.h@ 1186

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

Vago 1.4

File size: 440 bytes
Line 
1#ifndef XMLCOMMAND_H
2#define XMLCOMMAND_H
3#include <QProcess>
4#include <QThread>
5
6#include "utilvago.h"
7
8class XmlProcessor : public QThread
9{
10 Q_OBJECT
11public:
12 XmlProcessor(QString AppDir, QStringList *commands);
13private:
14 QString AppDir;
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.