1 Star 0 Fork 6

haidiyoushen / Offline-small-search

forked from zjzdy / Offline-small-search 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
unzip_thread.h 623 Bytes
Copy Edit Raw Blame History
zjzdy authored 2016-03-19 22:54 . Update v2.0.2
#ifndef UNZIP_THREAD_H
#define UNZIP_THREAD_H
#include <QObject>
#include <QThread>
#include <QString>
#include "quazip/JlCompress.h"
class unzip_o : public QObject
{
Q_OBJECT
public:
unzip_o();
public Q_SLOTS:
void on_unzip(QString zipfile, QString dir, int batch);
Q_SIGNALS:
void unzip_finish(int batch,QString dir);
};
class unzip_thread : public QThread
{
Q_OBJECT
public:
unzip_thread();
void run();
Q_SIGNALS:
void unzip(QString zipfile, QString dir, int batch);
void unzip_finish(int batch,QString dir);
};
#endif // UNZIP_THREAD_H
C++
1
https://gitee.com/haidiyoushen/Offline-small-search.git
git@gitee.com:haidiyoushen/Offline-small-search.git
haidiyoushen
Offline-small-search
Offline-small-search
master

Search