summaryrefslogtreecommitdiff
path: root/rockworkd/libpebble/ziphelper.h
blob: fe3a7a1855663bfa34656c415f893c86be59b990 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef ZIPHELPER_H
#define ZIPHELPER_H

#include <QString>

class ZipHelper
{
public:
    ZipHelper();

    static bool unpackArchive(const QString &archiveFilename, const QString &targetDir);
    static bool packArchive(const QString &archiveFilename, const QString &sourceDir);
};

#endif // ZIPHELPER_H