346950d7b7
Move all path/folder-related code from SettingManager to PathManager
23 lines
338 B
C++
23 lines
338 B
C++
#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;
|
|
};
|
|
|
|
} // namespace singletons
|
|
} // namespace chatterino
|