mirror-chatterino2/src/singletons/pathmanager.hpp

32 lines
567 B
C++
Raw Normal View History

#pragma once
#include <QString>
namespace chatterino {
namespace singletons {
class PathManager
{
PathManager() = default;
public:
static PathManager &getInstance();
bool init(int argc, char **argv);
QString settingsFolderPath;
QString customFolderPath;
2018-01-19 22:45:33 +01:00
QString cacheFolderPath;
// Logs
QString logsFolderPath;
QString channelsLogsFolderPath;
QString whispersLogsFolderPath;
QString mentionsLogsFolderPath;
bool createFolder(const QString &folderPath);
};
} // namespace singletons
} // namespace chatterino