mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 15:20:27 +01:00
24 lines
709 B
C++
24 lines
709 B
C++
#pragma once
|
|
|
|
#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 UserAccount 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 UserAccount
|
|
{
|
|
public:
|
|
explicit UserAccount(const std::string& user_id = "00000001");
|
|
|
|
std::string GetUserId() { return m_user_id; }
|
|
std::string GetUserDir() { return m_user_dir; }
|
|
std::string GetUsername() { return m_username; }
|
|
~UserAccount();
|
|
|
|
private:
|
|
std::string m_user_id;
|
|
std::string m_user_dir;
|
|
std::string m_username;
|
|
};
|