mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-22 13:40:45 +00:00
16 lines
267 B
C
16 lines
267 B
C
|
#ifndef QUAZIP_TEST_QUAZIP_H
|
||
|
#define QUAZIP_TEST_QUAZIP_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class TestQuaZip: public QObject {
|
||
|
Q_OBJECT
|
||
|
private slots:
|
||
|
void getFileList_data();
|
||
|
void getFileList();
|
||
|
void add_data();
|
||
|
void add();
|
||
|
};
|
||
|
|
||
|
#endif // QUAZIP_TEST_QUAZIP_H
|