mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
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
|