mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 11:37:12 +01:00
23 lines
412 B
C++
23 lines
412 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vcpkg/base/files.h>
|
|
|
|
namespace vcpkg
|
|
{
|
|
struct UserConfig
|
|
{
|
|
std::string user_id;
|
|
std::string user_time;
|
|
std::string user_mac;
|
|
|
|
std::string last_completed_survey;
|
|
|
|
static UserConfig try_read_data(const Files::Filesystem& fs);
|
|
|
|
void try_write_data(Files::Filesystem& fs) const;
|
|
};
|
|
|
|
fs::path get_user_dir();
|
|
}
|