mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-21 21:20:45 +00:00
14 lines
232 B
C
14 lines
232 B
C
|
#ifndef QUAZIP_TEST_QUAGZIPFILE_H
|
||
|
#define QUAZIP_TEST_QUAGZIPFILE_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class TestQuaGzipFile: public QObject {
|
||
|
Q_OBJECT
|
||
|
private slots:
|
||
|
void read();
|
||
|
void write();
|
||
|
};
|
||
|
|
||
|
#endif // QUAZIP_TEST_QUAGZIPFILE_H
|