mirror of https://github.com/AxioDL/metaforce.git
16 lines
287 B
C
16 lines
287 B
C
|
#ifndef TESTQUAZIPFILEINFO_H
|
||
|
#define TESTQUAZIPFILEINFO_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class TestQuaZipFileInfo : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit TestQuaZipFileInfo(QObject *parent = 0);
|
||
|
private slots:
|
||
|
void getNTFSTime();
|
||
|
};
|
||
|
|
||
|
#endif // TESTQUAZIPFILEINFO_H
|