blob: e581de68502f5b21bb62e63e141b8856faa9e219 (
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 /= ".local" / "share";
return boosty::stringy(docpath);
}
|