blob: b4a3d68b6d41c291a7e9dcc9fcff55e54fb59511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <QStandardPaths>
#include <QUuid>
#include "appmanager.h"
AppManager::AppManager(QObject *parent)
: QObject(parent)
{
}
QString AppManager::getAppDir(const QUuid& uuid) const
{
return QStandardPaths::locate(QStandardPaths::DataLocation,
QString("apps/%1").arg(uuid.toString()),
QStandardPaths::LocateDirectory);
}
|