summaryrefslogtreecommitdiff
path: root/tests/unit/mockup/coreplugin/icore.h
blob: 239085d56d67ddf0a58f3700fbabb7eae4c8febd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "utils/fileutils.h"

#include <QDir>


namespace Core {
namespace ICore {
inline static Utils::FilePath userResourcePath()
{
     return Utils::FilePath::fromString(QDir::tempPath());
}

inline static Utils::FilePath cacheResourcePath(const QString & /*rel*/ = {})
{
    return Utils::FilePath::fromString(QDir::tempPath());
}

inline static Utils::FilePath resourcePath()
{
    return Utils::FilePath::fromString(QDir::tempPath());
}

} // namespace ICore
} // namespace Core