status-desktop/src-cpp/constants.h
Patryk Osmaczko c0024ec6b1 refactor(@desktop/cpp): improve cpp code
Good coding practices applied only,
architecture and logic were not altered.
2022-03-01 16:05:21 +01:00

15 lines
339 B
C++

#pragma once
#include <QString>
namespace Constants
{
inline constexpr auto DataDir = "/data";
inline constexpr auto Keystore = "/data/keystore";
QString applicationPath(const QString& path = "");
QString tmpPath(const QString& path = "");
QString cachePath(const QString& path = "");
bool ensureDirectories();
} // namespace Constants