Sha256: be56ca7adba08257bd7721b87b2931580f18300933be17211f6857d47108287e

Contents?: true

Size: 1.16 KB

Versions: 13

Compression:

Stored size: 1.16 KB

Contents

//! \file Directories.hpp
//! Access to a small set of system paths.

#ifndef GOSU_DIRECTORIES_HPP
#define GOSU_DIRECTORIES_HPP

#include <string>

namespace Gosu
{
    //! Prefix for a program's own resources.
    //! On Windows, the executable's containing directory.
    //! On OS X, the application's Resources subdirectory.
    //! On Linux, the current directory.
    std::wstring resourcePrefix();
    
    //! Prefix for resources of a group of programs.
    //! On Windows, the executable's containing directory.
    //! On OS X, the application's containing subdirectory.
    //! On Linux, the current directory.
    std::wstring sharedResourcePrefix();
    
    //! Prefix for user settings.
    //! On Windows, the same as %APPDATA%.
    //! On OS X, the user's Library/Preferences folder.
    //! On Linux, the home directory plus a trailing dot for hidden files.
    std::wstring userSettingsPrefix();
    
    //! Prefix for user documents, e.g. save games.
    //! On Windows, the My Documents folder.
    //! On OS X, the user's Documents folder.
    //! On Linux, the home directory.
    std::wstring userDocsPrefix();
}

#endif

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
gosu-0.9.2-x64-mingw32 Gosu/Directories.hpp
gosu-0.9.2-x86-mingw32 Gosu/Directories.hpp
gosu-0.9.1-x64-mingw32 Gosu/Directories.hpp
gosu-0.9.1-x86-mingw32 Gosu/Directories.hpp
gosu-0.9.0-x86-mingw32 Gosu/Directories.hpp
gosu-0.9.0-x64-mingw32 Gosu/Directories.hpp
gosu-0.8.7.2-x86-mingw32 Gosu/Directories.hpp
gosu-0.8.7.2-x64-mingw32 Gosu/Directories.hpp
gosu-0.8.7.1-x86-mingw32 Gosu/Directories.hpp
gosu-0.8.7.1-x64-mingw32 Gosu/Directories.hpp
gosu-0.8.7-x86-mingw32 Gosu/Directories.hpp
gosu-0.8.7-x64-mingw32 Gosu/Directories.hpp
gosu-0.8.6-x64-mingw32 Gosu/Directories.hpp