mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
19 lines
294 B
C
19 lines
294 B
C
|
#ifndef APPDATAPATH_H
|
||
|
#define APPDATAPATH_H
|
||
|
|
||
|
#include <QString>
|
||
|
#include <atomic>
|
||
|
#include <mutex>
|
||
|
|
||
|
class Path
|
||
|
{
|
||
|
public:
|
||
|
static const QString &getAppdataPath();
|
||
|
|
||
|
private:
|
||
|
static QString appdataPath;
|
||
|
static std::mutex appdataPathMutex;
|
||
|
};
|
||
|
|
||
|
#endif // APPDATAPATH_H
|