mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 19:43:33 +01:00
21 lines
382 B
C
21 lines
382 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;
|
||
|
};
|
||
|
}
|