1.重新组织了文件。
2.准备试试把所有元素都读入内存中。 Signed-off-by: facat@lab.com <facat@lab.com>
This commit is contained in:
28
cimparser/derivedqthread.h
Normal file
28
cimparser/derivedqthread.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef DERIVEDQTHREAD_H
|
||||
#define DERIVEDQTHREAD_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QProcess>
|
||||
#include <QThread>
|
||||
#include <QDateTime>
|
||||
#include <QCryptographicHash>
|
||||
class DerivedQThread : public QThread
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit DerivedQThread(const QString &exe, QObject *parent = 0);
|
||||
void run();
|
||||
public:
|
||||
QString mid;
|
||||
protected:
|
||||
QString mExe;
|
||||
|
||||
|
||||
signals:
|
||||
void finishedptr(QThread *);
|
||||
protected slots:
|
||||
void customedfinished();
|
||||
|
||||
};
|
||||
|
||||
#endif // DERIVEDQTHREAD_H
|
||||
Reference in New Issue
Block a user