removed some ugly defines

This commit is contained in:
Luis Ángel San Martín
2013-08-22 23:12:56 +02:00
parent e43721fe8e
commit fa19b4b1ea
14 changed files with 418 additions and 413 deletions

View File

@ -28,13 +28,13 @@ struct SevenZipInterface;
class CompressedArchive : public QObject
{
Q_OBJECT
Q_OBJECT
public:
explicit CompressedArchive(const QString & filePath, QObject *parent = 0);
explicit CompressedArchive(const QString & filePath, QObject *parent = 0);
~CompressedArchive();
signals:
public slots:
int getNumFiles();
QList<QByteArray> getAllData(const QVector<quint32> & indexes, ExtractDelegate * delegate = 0);
@ -44,7 +44,7 @@ private:
SevenZipInterface * szInterface;
QLibrary * sevenzLib;
void loadFunctions();
};
#endif // COMPRESSED_ARCHIVE_H