source: s10k/Vago/xmlprocessor.h@ 1092

Last change on this file since 1092 was 1047, checked in by s10k, 8 years ago

Added Vago v1.0

File size: 481 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, Logger *myLogger, QStringList *commands);
13private:
14 QString AppDir;
15 Logger *myLogger;
16 QStringList *commands;
17
18protected:
19 void run(); //for thread
20signals:
21 void resultConversion(QString result, int numErrors);
22};
23
24
25
26#endif // XMLCOMMAND_H
Note: See TracBrowser for help on using the repository browser.