mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 13:50:46 +01:00
28 lines
835 B
C++
28 lines
835 B
C++
#pragma once
|
|
|
|
#include "util/types.hpp"
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
// Do not confuse this with the "user" in Emu/System.h.
|
|
// That user is read from config.yml, and it only represents the currently "logged in" user.
|
|
// The user_account class will represent all users in the home directory for the User Manager dialog.
|
|
// Selecting a user account in this dialog and saving writes it to config.yml.
|
|
class user_account
|
|
{
|
|
public:
|
|
explicit user_account(const std::string& user_id = "00000001");
|
|
|
|
std::string GetUserId() const { return m_user_id; }
|
|
std::string GetUserDir() const { return m_user_dir; }
|
|
std::string GetUsername() const { return m_username; }
|
|
|
|
static std::map<u32, user_account> GetUserAccounts(const std::string& base_dir);
|
|
|
|
private:
|
|
std::string m_user_id;
|
|
std::string m_user_dir;
|
|
std::string m_username;
|
|
};
|