Rev | Line | |
---|
[771] | 1 | #ifndef XMLCOMMAND_H
|
---|
| 2 | #define XMLCOMMAND_H
|
---|
| 3 | #include <QProcess>
|
---|
| 4 | #include <QThread>
|
---|
| 5 |
|
---|
[1047] | 6 | #include "utilvago.h"
|
---|
[811] | 7 |
|
---|
[771] | 8 | class XmlProcessor : public QThread
|
---|
| 9 | {
|
---|
| 10 | Q_OBJECT
|
---|
| 11 | public:
|
---|
[1093] | 12 | XmlProcessor(QString AppDir, QStringList *commands);
|
---|
[771] | 13 | private:
|
---|
[815] | 14 | QString AppDir;
|
---|
[771] | 15 | QStringList *commands;
|
---|
| 16 |
|
---|
| 17 | protected:
|
---|
| 18 | void run(); //for thread
|
---|
| 19 | signals:
|
---|
| 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.