mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-17 03:00:46 +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
|