rpcsx/rpcs3/rpcs3qt/user_account.h
2018-07-26 03:16:51 +04:00

26 lines
773 B
C++

#pragma once
#include "Emu/System.h"
#include "Utilities/File.h"
#include "Utilities/StrFmt.h"
// 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;
};