mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-19 04:00:45 +00:00
22 lines
419 B
C
22 lines
419 B
C
|
#ifndef QUAZIP_TEST_QUAZIPFILE_H
|
||
|
#define QUAZIP_TEST_QUAZIPFILE_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QStringList>
|
||
|
|
||
|
class TestQuaZipFile: public QObject {
|
||
|
Q_OBJECT
|
||
|
private slots:
|
||
|
void zipUnzip_data();
|
||
|
void zipUnzip();
|
||
|
void bytesAvailable_data();
|
||
|
void bytesAvailable();
|
||
|
void atEnd_data();
|
||
|
void atEnd();
|
||
|
void pos_data();
|
||
|
void pos();
|
||
|
void getZip();
|
||
|
};
|
||
|
|
||
|
#endif // QUAZIP_TEST_QUAZIPFILE_H
|