mirror-chatterino2/src/appdatapath.h

16 lines
217 B
C
Raw Normal View History

#pragma once
#include <QString>
#include <mutex>
class Path
{
public:
static const QString &getAppdataPath();
private:
static QString appdataPath;
static std::mutex appdataPathMutex;
};