2022-01-06 19:29:19 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
namespace Constants
|
|
|
|
{
|
2022-02-22 08:02:34 +00:00
|
|
|
inline constexpr auto DataDir = "/data";
|
|
|
|
inline constexpr auto Keystore = "/data/keystore";
|
2022-01-06 19:29:19 +00:00
|
|
|
|
2022-02-22 08:02:34 +00:00
|
|
|
QString applicationPath(const QString& path = "");
|
|
|
|
QString tmpPath(const QString& path = "");
|
|
|
|
QString cachePath(const QString& path = "");
|
2022-01-06 19:29:19 +00:00
|
|
|
bool ensureDirectories();
|
|
|
|
} // namespace Constants
|