mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-18 03:30:48 +00:00
16 lines
273 B
C++
16 lines
273 B
C++
#ifndef QUAZIP_TEST_QUAZIPDIR_H
|
|
#define QUAZIP_TEST_QUAZIPDIR_H
|
|
|
|
#include <QObject>
|
|
|
|
class TestQuaZipDir: public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void entryList_data();
|
|
void entryList();
|
|
void cd_data();
|
|
void cd();
|
|
};
|
|
|
|
#endif // QUAZIP_TEST_QUAZIPDIR_H
|