Apply clang-format to code base

This commit is contained in:
clang-format-bot 2022-09-22 21:26:05 +03:00 committed by ζeh Matt
parent f37d0be806
commit ddb0522bbf
No known key found for this signature in database
GPG key ID: 18CE582C71A225B0
2199 changed files with 118692 additions and 114392 deletions

View file

@ -11,48 +11,48 @@
namespace Files
{
/**
* \struct LinuxPath
*/
struct LinuxPath
{
LinuxPath(const std::string& application_name);
/**
* \brief Return path to the user directory.
* \struct LinuxPath
*/
std::filesystem::path getUserConfigPath() const;
struct LinuxPath
{
LinuxPath(const std::string& application_name);
std::filesystem::path getUserDataPath() const;
/**
* \brief Return path to the user directory.
*/
std::filesystem::path getUserConfigPath() const;
/**
* \brief Return path to the global (system) directory where config files can be placed.
*/
std::filesystem::path getGlobalConfigPath() const;
std::filesystem::path getUserDataPath() const;
/**
* \brief Return path to the runtime configuration directory which is the
* place where an application was started.
*/
std::filesystem::path getLocalPath() const;
/**
* \brief Return path to the global (system) directory where config files can be placed.
*/
std::filesystem::path getGlobalConfigPath() const;
/**
* \brief Return path to the global (system) directory where game files can be placed.
*/
std::filesystem::path getGlobalDataPath() const;
/**
* \brief Return path to the runtime configuration directory which is the
* place where an application was started.
*/
std::filesystem::path getLocalPath() const;
/**
* \brief
*/
std::filesystem::path getCachePath() const;
/**
* \brief Return path to the global (system) directory where game files can be placed.
*/
std::filesystem::path getGlobalDataPath() const;
/**
* \brief Gets the path of the installed Morrowind version if there is one.
*/
std::filesystem::path getInstallPath() const;
/**
* \brief
*/
std::filesystem::path getCachePath() const;
std::string mName;
};
/**
* \brief Gets the path of the installed Morrowind version if there is one.
*/
std::filesystem::path getInstallPath() const;
std::string mName;
};
} /* namespace Files */