mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 13:44:17 +00:00
22 lines
409 B
C++
22 lines
409 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
class Path
|
|
{
|
|
public:
|
|
static QString getLogDir();
|
|
|
|
static QString getBoxArtCacheDir();
|
|
|
|
static QByteArray readDataFile(QString fileName);
|
|
|
|
// Only safe to use directly for Qt classes
|
|
static QString getDataFilePath(QString fileName);
|
|
|
|
static void initialize(bool portable);
|
|
|
|
private:
|
|
static QString s_LogDir;
|
|
static QString s_BoxArtCacheDir;
|
|
};
|