Store all files in the current directory for portable installations. Fixes #43
This commit is contained in:
parent
345e800abd
commit
38ff2bf5cb
6 changed files with 79 additions and 12 deletions
16
app/path.h
Normal file
16
app/path.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#pragma once
|
||||
|
||||
#include <QString>
|
||||
|
||||
class Path
|
||||
{
|
||||
public:
|
||||
static QString getLogDir();
|
||||
|
||||
static QString getBoxArtCacheDir();
|
||||
|
||||
static void initialize(bool portable);
|
||||
|
||||
static QString s_LogDir;
|
||||
static QString s_BoxArtCacheDir;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue