Fix forward navigation control on Linux.
[dorian] / model / extractzip.h
1 #ifndef EXTRACTZIP_H
2 #define EXTRACTZIP_H
3
4 class QString;
5 class QStringList;
6
7 /**
8  * Extract files from a ZIP archive.
9  *
10  * @param   path                ZIP file path.
11  * @param   excludedExtensions  Files in the ZIP with matching extensions will
12  *                              not be extracted. Items in this list are case
13  *                              insensitive, and start with ".".
14  * @return  True (succes) or false (failure).
15  */
16 bool extractZip(const QString &path, const QStringList &excludedExtensions);
17
18 #endif // EXTRACTZIP_H