Exemple #1
0
boost::filesystem::path MacOsPath::getGlobalDataPath() const
{
    boost::filesystem::path globalDataPath("/Library/Application Support/");
    return globalDataPath / mName;
}
Exemple #2
0
boost::filesystem::path LinuxPath::getGlobalDataPath() const
{
    boost::filesystem::path globalDataPath("/usr/share/games/");
    return globalDataPath / mName;
}
Exemple #3
0
boost::filesystem::path LinuxPath::getGlobalDataPath() const
{
    boost::filesystem::path globalDataPath(GLOBAL_DATA_PATH);
    return globalDataPath / mName;
}
Exemple #4
0
boost::filesystem::path AndroidPath::getGlobalDataPath() const
{
    boost::filesystem::path globalDataPath("/sdcard/morrowind/data");
    return globalDataPath / mName;
}