mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-18 03:30:48 +00:00
16 lines
499 B
C
16 lines
499 B
C
#ifndef QUAZIP_TEST_QZTEST_H
|
|
#define QUAZIP_TEST_QZTEST_H
|
|
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
extern bool createTestFiles(const QStringList &fileNames, const QString
|
|
&dir = "tmp");
|
|
extern void removeTestFiles(const QStringList &fileNames, const QString
|
|
&dir = "tmp");
|
|
extern bool createTestArchive(const QString &zipName,
|
|
const QStringList &fileNames,
|
|
const QString &dir = "tmp");
|
|
|
|
#endif // QUAZIP_TEST_QZTEST_H
|