1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef APPMANAGER_H #define APPMANAGER_H #include <QObject> class AppManager : public QObject { Q_OBJECT public: explicit AppManager(QObject *parent = 0); bool installPebbleApp(const QString &pbwFile); QList<QUuid> allInstalledApps() const; QString getAppDir(const QUuid &uuid) const; }; #endif // APPMANAGER_H