mirror-chatterino2/src/appdatapath.hpp

16 lines
202 B
C++
Raw Normal View History

2017-06-11 09:31:45 +02:00
#pragma once
#include <QString>
#include <mutex>
class Path
{
public:
static const QString &getAppdataPath();
private:
static QString appdataPath;
static std::mutex appdataPathMutex;
};