blob: d7b7b6d6d5d24a8f2daf492bc04554875fb1ef95 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "PlatformUtils.h"
#include "boosty.h"
std::string PlatformUtils::documentsPath()
{
fs::path docpath(getenv("HOME"));
docpath = docpath / ".local" / "share";
return boosty::stringy(docpath);
}
|